[CLOSED] FieldSet and ColumnLayout

  1. #1

    [CLOSED] FieldSet and ColumnLayout

    I put a ColumnLayout inside a FieldSet and set two columns to 50%. When it renders, the columns are less than 50% until I resize the page.

    
    
    
    <ext:Tab ID="Tab3" runat="server" Title="Profile Info" BodyStyle="padding:5px">
    
    
    <body>
    
    
    <ext:FieldSet ID="FieldSet2" runat="server" Title="GENERAL" AutoHeight="true" Autowidth="true" >
    
    
    <Body>
    
    
    <ext:ColumnLayout ID="ColumnLayout3" runat="server" FitHeight="true" >
    
    
    <ext:LayoutColumn ColumnWidth="0.5">
    
    
    <ext:Panel ID="Panel4" runat="server" Height="200" Title="Column 1" Header="false" BodyStyle="padding:5px" >
    
    
    <Body>
    
    
    <ext:FormLayout ID="FormLayout1" runat="server" >
    
    
    <ext:Anchor Horizontal="95%">
    
    
    <ext:TextField ID="TextField2" runat="server" FieldLabel="Field1">
    
    
    </ext:TextField>
    
    
    </ext:Anchor>
    
    
    </ext:FormLayout>
    
    
    </Body>
    
    
    </ext:Panel>
    
    
    </ext:LayoutColumn>
    
    
    <ext:LayoutColumn ColumnWidth="0.5">
    
    
    <ext:Panel ID="Panel10" runat="server" Height="200" Title="Column 2" Header="false" BodyStyle="padding:5px">
    
    
    <Body>
    
    
    <ext:FormLayout ID="FormLayout2" runat="server">
    
    
    <ext:Anchor>
    
    
    <ext:TextField ID="TextField3" runat="server" FieldLabel="Field1">
    
    
    </ext:TextField>
    
    
    </ext:Anchor>
    
    
    </ext:FormLayout>
    
    
    </Body>
    
    
    </ext:Panel>
    
    
    </ext:LayoutColumn>
    
    
    </ext:ColumnLayout>
    
    
    
    
    
    </body>
    
    
    </ext:FieldSet>
    
    
    </Body>
    
    
    </ext:Tab>
  2. #2

    RE: [CLOSED] FieldSet and ColumnLayout

    Hi,

    1. Remove FieldSet's property: AutoHeight, AutoWidth


    2. Wrap the FieldSet by FitLayout
    <ext:Tab ...>
    <Body>
    <ext:FitLayout runat="server">
    <ext:FieldSet ...>


    3. Add for TabPanel: DeferredRender="false" LayoutOnTabChange="true"



Similar Threads

  1. [CLOSED] ColumnLayout
    By majunior in forum 1.x Legacy Premium Help
    Replies: 9
    Last Post: Sep 14, 2011, 8:24 PM
  2. Fieldset padding inside a ColumnLayout
    By Coltonis in forum 1.x Help
    Replies: 0
    Last Post: Jul 09, 2010, 1:13 AM
  3. [CLOSED] [1.0] ColumnLayout in FieldSet
    By rcaunt in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Jun 04, 2010, 1:50 PM
  4. A few bugs with ColumnLayout inside FieldSet
    By dbassett74 in forum 1.x Help
    Replies: 0
    Last Post: May 06, 2009, 2:13 PM
  5. [CLOSED] Multiple FieldSet within ColumnLayout
    By Steve in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Feb 03, 2009, 3:35 PM

Posting Permissions