Straight up simple WebDropDown located in a DialogWindow works when when DialogWindow started normal but not when started hidden, There are some other goofy effects on the dialog window but I have found work arounds for all but this. ASP.NET DropDownLists work fine but trying to use the IG controls. Please help!
Simplified section of the page that demonstrates this issue: (what's up with your forum that it spaces out paste for Visual Studio ??)
="Centered"
="Hidden">
="Options 23">
>
Output Format
/>
="200px"
="131px">
Yes, it was the Z-order issue and you can see with the right background.
EnableDropDownAsChild=false and adding <ClientEvents Initialize="initDropDown" /> to the control and then
adding the following to the script
function initDropDown(sender,args)
{
sender.behavior.set_zIndex(200000);
}
resolved the issue. Thanks
Hi,
You can have a look at the following thread:
http://forums.infragistics.com/forums/p/23845/88164.aspx
To sum up - the issue is that WebDialogWindow puts a very big zIndex so that it always appears on top, therefore in order for the dropdown container to appear on top of the dialog window, its z-index must be higher.
Hope it helps,
Angel