[FIXED] [V0.6] Combobox in Ext:Cell does not show list

  1. #1

    [FIXED] [V0.6] Combobox in Ext:Cell does not show list

    Hi,
    The following does'nt expand the list of the combobox when placed inside the ext:cell

    I tried z-index:1000 for combobox but its not working.

       <ext:Panel ID="Panel1" runat="server" Height="300" Title="Title">
                <Content>
                
           <ext:TableLayout ID="tblayout" runat="server">
           <ext:Cell ><ext:ComboBox ID="combobox" runat="server">
           <Items ><ext:ListItem Text ="One" Value="One" />
           <ext:ListItem Text ="Two" Value ="Two" />
           </Items>
           <SelectedItem Text ="One" Value ="Two" />
           </ext:ComboBox></ext:Cell>
           </ext:TableLayout>
                </Content>
            </ext:Panel>
    Thanks
  2. #2

    RE: [FIXED] Combobox in Ext:Cell does not show list

    Forgot to mention. I am using Pre Preview 6.0. Tried in FF3 and IE7.

    Thanks
  3. #3

    RE: [FIXED] Combobox in Ext:Cell does not show list

    Hello,

    The below example, based on yours, works in FF3.0 and IE6.0 using Coolite SVN latest build:

    <%@ Page Language="C#" %>
    <%@ Register assembly="Coolite.Ext.Web" namespace="Coolite.Ext.Web" tagprefix="ext" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    
    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head>
        <title>Word</title>
    </head>
    <body>
        <p><a href="Example.aspx">Reload</a></p>
        <form id="form1" runat="server">
            <ext:ScriptManager ID="ScriptManager1" runat="server" />
            <ext:Panel runat="server" Height="300" Title="Title">
                <Content>
                    <ext:TableLayout runat="server">
                        <ext:Cell>
                            <ext:ComboBox ID="ComboBox1" runat="server">
                                <SelectedItem Text="One" Value="Two" />
                                <Items>
                                    <ext:ListItem Text="One" Value="One" />
                                    <ext:ListItem Text="Two" Value="Two" />
                                </Items>
                            </ext:ComboBox>
                        </ext:Cell>
                    </ext:TableLayout>
                </Content>
            </ext:Panel>
        </form>
    </body>
    </html>
    Cheers,
    Timothy
  4. #4

    RE: [FIXED] Combobox in Ext:Cell does not show list

    aha... cool...

    I dont have SVN access... :(

    Will wait for preview.

    Hey Geoff, r u guys releasing preview today? I remember u saying tuesday :)

    Thanks,

Similar Threads

  1. Replies: 0
    Last Post: Jun 08, 2012, 11:49 AM
  2. Replies: 8
    Last Post: Nov 28, 2011, 9:25 AM
  3. Combobox List Items Class
    By Tbaseflug in forum 1.x Help
    Replies: 6
    Last Post: Dec 10, 2010, 7:26 AM
  4. Replies: 1
    Last Post: Jul 30, 2009, 6:33 AM
  5. Replies: 5
    Last Post: Jun 16, 2009, 1:27 PM

Posting Permissions