All
I'm using a Telerik RadWindow to pop out from my main page, add some new data, close the RadWindow and postback the main page updating a gridview I just added data to
using this code
simple enough
when the main page reloads, its does not render correctly, just over half the page is fine but on thre other half, the controls become unusable
It seems that 1 panel in particular is causing the problem and if I make that panel invisible, the page works fine
any ideas
I'm using a Telerik RadWindow to pop out from my main page, add some new data, close the RadWindow and postback the main page updating a gridview I just added data to
using this code
function GetRadWindow()
{
var oWindow = null;
if (window.radWindow) oWindow = window.radWindow;
else if (window.frameElement.radWindow) oWindow = window.frameElement.radWindow;return oWindow;
}
function CloseAndReload()
{
var oWnd = GetRadWindow().BrowserWindow;
oWnd.location.href = oWnd.location.href;
}
simple enough
when the main page reloads, its does not render correctly, just over half the page is fine but on thre other half, the controls become unusable
It seems that 1 panel in particular is causing the problem and if I make that panel invisible, the page works fine
any ideas