How do I get rid of the iframe border that appears on the inside of the WebDialogWindow? I tried doing the following in Javascript with no luck.
var iframe = dialog.get_contentPane().get_iframe();
iframe.setAttribute("frameBorder", "0");
I still haven't had any luck with this doing it through Javascript. I attempted to try to do it in C# but I can't seem to find a way to access the properties of the iframe.
Did you find a solution for this? I tried the following but I still see the frameborder in IE6 + IE7:
var webDialogWindow = $find('<%= webDialogWindow.ClientID %>'); var iframe = webDialogWindow.get_contentPane().get_element().getElementsByTagName("IFRAME")[0]; iframe.frameBorder = "0";