Eddy
Eddy

Reputation: 88

Script16389: unspecified error

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

Answers (1)

ducdhm
ducdhm

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

Related Questions