I am using the RadWindow to show a "pop up" window and I have everything working except there are a couple issues that I cannot seem to resolve.
One:
In IE7, the content of the window will not scroll. It is showing grayed out scroll bars, but you cannot use them. Sometimes it shows 100 pixels of padding to the right of the content. My initial thought is that the iframe is not being sized correctly in the window.
Two:
In FireFox (v3), the all the buttons (pin, max...) except the close button have a tiny black square displaying over the top of the button. Pretty annoying, but this behavior isn't present when using IE7.
Here is my code:
Any ideas on how to resolve these issues?
One:
In IE7, the content of the window will not scroll. It is showing grayed out scroll bars, but you cannot use them. Sometimes it shows 100 pixels of padding to the right of the content. My initial thought is that the iframe is not being sized correctly in the window.
Two:
In FireFox (v3), the all the buttons (pin, max...) except the close button have a tiny black square displaying over the top of the button. Pretty annoying, but this behavior isn't present when using IE7.
Here is my code:
<script language="javascript"> |
function showOrder(url,targetId){ |
var oWnd = $find(targetId); |
if (oWnd.get_navigateUrl() == ''){ |
oWnd.setSize(1000,500); |
oWnd.set_behaviors(Telerik.Web.UI.WindowBehaviors.Resize + Telerik.Web.UI.WindowBehaviors.Close + Telerik.Web.UI.WindowBehaviors.Pin + Telerik.Web.UI.WindowBehaviors.Maximize + Telerik.Web.UI.WindowBehaviors.Move); |
oWnd.center; |
} |
oWnd.setUrl(url); |
oWnd.show(); |
} |
</script> |
<telerik:RadWindow ID="OrderViewWnd" Skin="Gray" Title="View Purchase Order" VisibleStatusbar="false" runat="server"></telerik:RadWindow> |