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; }
Leave a Reply