Telerik RadWindow Pop up Problem in Chrome and safari

Recently i have faced one issue with display of Telerik Rad Window on Apple Webkit browsers (Chrome and safari).

The problem was, the window appeared cropped in Chrome and safari. the height attribute of body tag wasn’t working properly.

After lots of trial and googling I found one work around to solve this issue.

Set the contentFrame after show of Telerik pop up from Client side to 100%, and it will save your time. 🙂

 var oWindow = $find("<%=radAddCD.ClientID%>;");
 if(oWindow)
 {
 oWindow.show();
 var contentFrame = oWindow.get_contentFrame();
 contentFrame.style.height = "100%";
 return false;
 }

Posted

in

by


Related Posts

Comments

One response to “Telerik RadWindow Pop up Problem in Chrome and safari”

  1. SP Avatar
    SP

    Thanks for the article. It fixed the issue in no time!

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Discover more from Jitendra Zaa

Subscribe now to keep reading and get access to the full archive.

Continue Reading