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

Parent webpage disappears with modal window

1 Answer 53 Views
Window
This is a migrated thread and some comments may be shown as answers.
TheMilkMan
Top achievements
Rank 1
TheMilkMan asked on 07 Oct 2010, 03:38 PM

I have a webpage that has a RadGrid on it (among other controls) and display a modal window when the user submits data. If the rows on the grid are less than 100 rows it all works fine. But if the row count is greater than 100 (or somewhere around 100, haven't got it to an exact figure) the parent webpage's control etc. all disappear and only once the modal window is closed does the parent window redisplay correctly.
Any ideas?

I am using the following javascript to display the window:

 

function OpenValidationWindow() {
    oWnd = window.radopen('../MarketDataPriceInputValidation.aspx', null);
    oWnd.show();
    oWnd.set_behaviors(Telerik.Web.UI.WindowBehaviors.Close);
    oWnd.SetSize(625, 600);
    //Adjust position of validation window
    oWnd.MoveTo(162.5, 110);
    //Set the callBack function to be called once the user has clicked on a button on the validation window
    oWnd.add_close(OnValidationWindowClose);
}

 

 

1 Answer, 1 is accepted

Sort by
0
Georgi Tunev
Telerik team
answered on 08 Oct 2010, 12:30 PM
Hello,

Do you get this problem on a laptop or a PC with old videocard? I am asking this because such problem usually occurs when the page is displayed on machines where the card is either old or the video drivers are outdated. The reason for the problem is that for the modal overlay in IE, we are using CSS filter which is a DirectX object. If there is a lot of content on the page, the browser might not be able to properly show the filter applied over the modal overlay and will make it solid instead of semi-transparent. Try updating your drivers / DirectX version and see if it helps.


Best wishes,
Georgi Tunev
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
Window
Asked by
TheMilkMan
Top achievements
Rank 1
Answers by
Georgi Tunev
Telerik team
Share this question
or