This behavior is observed because there is a limitation to the height of an iframe in all browsers. I suppose you are using a external page inside the RadWindow. According to this forum thread if you want to have a smaller RadWindow you could use its ContentTemplate and add the controls directly there, instead of using an external page, if this is possible in your scenario.
But now I have other problem in GetWindow() function:
GetRadWindow().BrowserWindow.refreshgrid(args)... -->
where
function GetRadWindow() {
var oWindow = null;
if (window.radWindow) oWindow = window.radWindow; //Will work in Moz in all cases, including clasic dialog
else if (window.frameElement.radWindow) oWindow = window.frameElement.radWindow; //IE (and Moz as well)
return oWindow;
}
window,Radwindow IS NULL.
I need put the radwindow inside usercontrol , because i use in all screens.
How I can close the radwindow and refreshgrid?