Hello, we have updated from Version 3_1125 to 3_1314.
Now we have the problem that the radwindow is not sized and centered.
Every Radwindow has full screenwith half height and is aligned at top.
We are using for example this code from clientside:
function ShowChartWindow()
{
if (oWnd != null)
{
oWnd.close();
}
oWnd = radopen ("tourchart.aspx", "");
oWnd.setSize (734, 500);
oWnd.center;
oWnd.set_modal(true);
oWnd.set_visibleStatusbar(false);
oWnd.set_destroyOnClose(true);
}
How can we slove this problem?
thank you ....