PDA

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



amitpareek
Sep 16, 2008, 2:44 PM
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

amitpareek
Sep 16, 2008, 2:47 PM
Forgot to mention. I am using Pre Preview 6.0. Tried in FF3 and IE7.

Thanks

Timothy
Sep 16, 2008, 3:39 PM
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

amitpareek
Sep 16, 2008, 3:50 PM
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,