I would like to be able to auto close a Rad Window after 2 seconds. (Everything works except for the auto close after 2000ms). I have tried the setTimeout like this:
function openQuickActionRadWindow(tabid,XModID)
{
var oWnd = radopen("/Default.aspx?tabid=" + tabid + "&xmfid=5&SkinSrc=[G]Skins/Blue-NCPP/Plain&xmid=" + XModID, "RadWindow3" );
oWnd.Center();
oWnd.add_close(RefreshGrid);
setTimeout(oWnd.Close, 2000);
}
but I get a javascript error: Object doesn't support this property or method.
The details:
Browser: IE 8
Version: 2009.3.1208.35
Thanks,
Joe