Hello
I have a problem with WebDropDown boxes in which the list is larger than the dialog window height. In this case the list will disappear under the window. You can check this problem in your sample "How to Configure the WebDropDown" (http://samples.infragistics.com/2010.3/WebFeatureBrowser/Default.aspx ). If you change the value "Container Max Height:" to 500 and open then the list so you don't see the whole box.
The same problem I have with the WebDropDown in a WebTab. The original DropDownList box is working correctly in both cases.
What can I do with your box that also works correctly?
Regards
Xaver
Hello Xaver,
You should set EnableDropDownAsChild="false"
http://help.infragistics.com/NetAdvantage/ASPNET/2010.3?page=Infragistics4.Web.v10.3~Infragistics.Web.UI.ListControls.WebDropDown~EnableDropDownAsChild.html
<ig:WebDialogWindow ID="WebDialogWindow1" runat="server" Height="300px" Width="400px">
<ContentPane>
<Template>
<ig:WebDropDown ID="WebDropDown1" runat="server" Width="200px" EnableDropDownAsChild="false"
OnLoad="WebDropDown1_Load" DropDownContainerMaxHeight="500px">
</ig:WebDropDown>
</Template>
</ContentPane>
</ig:WebDialogWindow>
Please let me know if you need further assistance regarding this.