TableLayout 2 bugs in Ext.Net1.x

  1. #1

    TableLayout 2 bugs in Ext.Net1.x

    When I use TableLayout with Ext.Net1.x and IE6 or IE Quirks mode, TableLayout will look like below:

    Click image for larger version. 

Name:	ie6.png 
Views:	98 
Size:	4.9 KB 
ID:	5224

    In normal mode will look like this:

    Click image for larger version. 

Name:	normal.png 
Views:	71 
Size:	5.0 KB 
ID:	5225

    code below:

    <ext:TableLayout ID="TableLayout1" runat="server" Columns="3">
        <Cells>
            <ext:Cell>
                <ext:TextField ID="TextField1" runat="server" FieldLabel="Source" Width="300" LabelAlign="Right">
                </ext:TextField>
            </ext:Cell>
            <ext:Cell>
                <ext:Container ID="Container2" runat="server" Width="350">
                    <Items>
                        <ext:ComboBox ID="ComboBox1" runat="server" FieldLabel="Type" Width="300" LabelAlign="Right"
                            Editable="false">
                        </ext:ComboBox>
                    </Items>
                </ext:Container>
            </ext:Cell>
            <ext:Cell>
                <ext:Button ID="Button1" runat="server" Text="Search" Icon="Find">
                    <Listeners>
                        <Click Fn="doQuery" />
                    </Listeners>
                </ext:Button>
            </ext:Cell>
            <ext:Cell>
                <ext:DateField ID="DateField1" runat="server" Vtype="daterange" EndDateField="DateField2"
                    FieldLabel="from" Width="300" LabelAlign="Right" Format="Y/m/d">
                </ext:DateField>
            </ext:Cell>
            <ext:Cell>
                <ext:DateField ID="DateField2" runat="server" Vtype="daterange" StartDateField="DateField1"
                    FieldLabel="to" Width="300" LabelAlign="Right" Format="Y/m/d">
                </ext:DateField>
            </ext:Cell>
            <ext:Cell>
                <ext:Button ID="Button2" runat="server" Text="Reset" Icon="BinEmpty">
                    <Listeners>
                        <Click Fn="clearQuery" />
                    </Listeners>
                </ext:Button>
            </ext:Cell>
        </Cells>
    </ext:TableLayout>
    And another problem is FileUploadField can't display upload button in TableLayout.

    Click image for larger version. 

Name:	file.png 
Views:	78 
Size:	5.2 KB 
ID:	5226

    <ext:TableLayout ID="TableLayout1" runat="server" Columns="3">
        <Cells>
            <ext:Cell>
                <ext:FileUploadField ID="FileUploadField1" runat="server" FieldLabel="FileUploadField" Width="300" LabelAlign="Right">
                </ext:FileUploadField>
            </ext:Cell>
            <ext:Cell>
                <ext:Container ID="Container2" runat="server" Width="350">
                    <Items>
                        <ext:ComboBox ID="ComboBox1" runat="server" FieldLabel="Type" Width="300" LabelAlign="Right"
                            Editable="false">
                        </ext:ComboBox>
                    </Items>
                </ext:Container>
            </ext:Cell>
            <ext:Cell>
                <ext:Button ID="Button1" runat="server" Text="Search" Icon="Find">
                    <Listeners>
                        <Click Fn="doQuery" />
                    </Listeners>
                </ext:Button>
            </ext:Cell>
            <ext:Cell>
                <ext:DateField ID="DateField1" runat="server" Vtype="daterange" EndDateField="DateField2"
                    FieldLabel="from" Width="300" LabelAlign="Right" Format="Y/m/d">
                </ext:DateField>
            </ext:Cell>
            <ext:Cell>
                <ext:DateField ID="DateField2" runat="server" Vtype="daterange" StartDateField="DateField1"
                    FieldLabel="to" Width="300" LabelAlign="Right" Format="Y/m/d">
                </ext:DateField>
            </ext:Cell>
            <ext:Cell>
                <ext:Button ID="Button2" runat="server" Text="Reset" Icon="BinEmpty">
                    <Listeners>
                        <Click Fn="clearQuery" />
                    </Listeners>
                </ext:Button>
            </ext:Cell>
        </Cells>
    </ext:TableLayout>
  2. #2
    Hello!

    Both of them are known problems:

    1) http://forums.ext.net/showthread.php...ut-IE6-Problem

    2) http://www.sencha.com/forum/showthre...in-TableLayout


    The thread has been moved to the Community Forum.
  3. #3
    Thanks Baidaly, I think I should avoid use TableLayout in code.

Similar Threads

  1. [FIXED] Ext.NET Web Bugs
    By David Pelaez in forum Bugs
    Replies: 6
    Last Post: Apr 22, 2013, 4:45 AM
  2. a problem with ext.net1.0 examples
    By hefeilixin in forum 1.x Help
    Replies: 1
    Last Post: Aug 26, 2010, 9:00 AM
  3. ext.net1.0 how to use BoxComponent
    By hefeilixin in forum 1.x Help
    Replies: 3
    Last Post: Aug 23, 2010, 2:45 AM
  4. [1.0] Bugs
    By r_honey in forum 1.x Help
    Replies: 9
    Last Post: Jan 07, 2010, 6:46 AM
  5. [CLOSED] Possible bugs?
    By Chelonian in forum 1.x Help
    Replies: 2
    Last Post: Sep 14, 2008, 12:00 PM

Posting Permissions