I have a dropdownlist on my page and when I open my WebDialogWindow, the dropdownlist controls are still visible and overlaps the WebDialogWindow.
I have read that this is an IE6 issue, but is there any workaround that you know of?
i have exactly the same problem :(
i fixed this by making it modal.
I fixed this by hiding the select elements.
/// <summary>
/// Register javascript to hide select elements. Select elements overlap window in IE6
/// </summary>
{
//Creates function that displays select elements
scrp += " var resultVar = dialog.get_windowState();if (resultVar == 3) {var elements = document.getElementsByTagName('select');";
}
//Creates function that hides select elements
scrp += "while (i < elements.length) {elements[i].style.display = 'none';i++;}}</script>";
In the WebDialogWindow attributed I added the javascript functions to the ClientEvents tag.
<ClientEvents Initialize="hideSelect" WindowStateChanged="showSelect" />