This is a migrated thread and some comments may be shown as answers.

Issues with scrolling and "black dots"

1 Answer 57 Views
Window
This is a migrated thread and some comments may be shown as answers.
Dave Myers
Top achievements
Rank 1
Dave Myers asked on 23 Sep 2008, 05:46 PM
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:
<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> 
Any ideas on how to resolve these issues?


1 Answer, 1 is accepted

Sort by
0
Georgi Tunev
Telerik team
answered on 25 Sep 2008, 06:57 AM
Hello Dave,

I tested your code and it works as expected on my end, so I guess that the reason for it might be some global styles that you are using in your code. Unfortunately without being able to reproduce the problem I cannot tell what exactly is causing this behavior - could you please open a support ticket and send me a small sample project? I will check it and get back to you.




Sincerely yours,
Georgi Tunev
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
Window
Asked by
Dave Myers
Top achievements
Rank 1
Answers by
Georgi Tunev
Telerik team
Share this question
or