[CLOSED] column layout question

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1

    [CLOSED] column layout question

    Support,

    see example. I want the yyyy textbox on the SECOND row, not the first. how can i add a spacer to push it down?
    i dont want anything in it's place, i want it blank,

    thanks,
    /Z

    <%@ Page Language="C#" %>  
    <%@ Import Namespace="Crystal" %>
    <%@ Import Namespace="Crystal.Models" %>
    
    
    <!DOCTYPE html>
    
    
    <html>
        <body>
    
    
            <form runat="server">
    
    
                <ext:ResourceManager ID="ResourceManager1" runat="server">
                </ext:ResourceManager>
        
                <ext:Viewport ID="Viewport1" runat="server" Layout="VBoxLayout">          
                    <LayoutConfig>
                        <ext:VBoxLayoutConfig Align="Center" Pack="Start" />
                    </LayoutConfig>
                    <Items>
                        <ext:FormPanel
                            ID="Form1"
                            runat="server"
                            Title="Information"
                            BodyPadding="5"
                            ButtonAlign="Right"
                            Layout="Column">
                            <Items>
                                <ext:Panel
                                    runat="server" Border="false" Header="false" Layout="Form" ColumnWidth=".33" LabelAlign="Top">
                                    <Defaults>
                                        <ext:Parameter Name="MsgTarget" Value="side" />
                                    </Defaults>
                                    <Items>
                                        <ext:TextField ID="rrrr" runat="server" AllowBlank="false" FieldLabel="rrrrr" Vtype="alpha" AnchorHorizontal="92%" />
                                        <ext:TextField ID="TextField1" runat="server" AllowBlank="false" FieldLabel="rrrrr" Vtype="alpha" AnchorHorizontal="92%" />
                                    </Items>
                                </ext:Panel>
                                <ext:Panel runat="server" Border="false" Header="false" Layout="Form" ColumnWidth=".33" LabelAlign="Top">
                                    <Defaults>
                                        <ext:Parameter Name="MsgTarget" Value="side" />
                                    </Defaults>
                                    <Items>
                                        <ext:TextField ID="tttt" runat="server" FieldLabel="ttttt" Vtype="alpha" AllowBlank="true"  AnchorHorizontal="92%" MaxLengthText="1" />                                
                                        <ext:TextField ID="TextField2" runat="server" FieldLabel="ttttt" Vtype="alpha" AllowBlank="true"  AnchorHorizontal="92%" MaxLengthText="1" />                                
                                    </Items>
                                </ext:Panel>
                                <ext:Panel runat="server" Border="false" Layout="Form" ColumnWidth=".33" LabelAlign="Top">
                                    <Defaults>
                                        <ext:Parameter Name="MsgTarget" Value="side" />
                                    </Defaults>
                                    <Items>
                                        <ext:TextField ID="yyyy" runat="server" FieldLabel="yyyy" Vtype="alpha" AllowBlank="false" AnchorHorizontal="92%" />
                                    </Items>
                                </ext:Panel>
                            </Items>
                        </ext:FormPanel>
                    </Items>
                </ext:Viewport>
            </form>
        </body>
    </html>
    Last edited by fabricio.murta; Oct 06, 2018 at 12:10 AM. Reason: no feedback from the user in 7+ days

Similar Threads

  1. [CLOSED] layout issue when using RowLayout within column layout
    By Daly_AF in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Jun 11, 2012, 2:40 PM
  2. [CLOSED] vbox layout inside column layout
    By craig2005 in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Feb 04, 2011, 2:44 PM
  3. [CLOSED] Basic Layout question for Layout Fit / AutoHeight
    By macap in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Apr 07, 2010, 11:57 AM
  4. Column layout question
    By Jurke in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Mar 11, 2009, 9:10 AM
  5. [CLOSED] Layout Question
    By Sharon in forum 1.x Legacy Premium Help
    Replies: 4
    Last Post: Mar 02, 2009, 10:31 AM

Posting Permissions