Reputation: 88
I got "script16389: unspecified error" error in IE9 when I tried to open a RadWindow on popup.
...
var oWnd = $find(<% myRadWindow.ClientID %>);
oWnd.show();
...
I tried to debug and it's dead after run oWnd.show()
Upvotes: 1
Views: 5818
Reputation: 1952
Can you try to push document.documentElement.focus();
before oWnd.show()
. Maybe when you show the RadWindow, there's no activate or focused element.
Upvotes: 2