or
Hello,
We are experiencing an issue with the RadWindowManager and RadWindow not rendering after a postback.
They render to the page initially, then after triggering a postback, they fail to render to the page.
The page is ajaxified and the object that fires the postback is inside an update panel. The RadWindowManager resides outside of the update panel. We’re using the standard asp update panel. We're using a MasterPage and an standard asp script manager.
Does anyone see any issues with this, have a different solution / suggestion or has experienced the same issues?
Your insight is appreciated, thanks for reading and considering.
protected void RadGrid1_PreRender(object sender, EventArgs e)
{
RadGrid RadGrid1 = (RadGrid)sender;
if(RadGrid1.Items.Count==0)
{
RadGrid1.Visible = false;
}
}