Hello,
we're currently developing an application that makes extensive use of popup windows(*) and have run into an issue on IE (this has been reported before but I couldn't find any solution).
The problem is this: our main window M opens a popup window P and keeps a reference to it. P then registers an event handler on an object in M. When the event fires, IE8 bombs out with the following error message:
JScript object expected
ext-all-debug.js (Line 1735, Char 17)
Code: 0
which is the fire-function in EXTUTIL.Event.prototype
. The code works fine in Firefox, Opera and Chrome.
I've provided a minimal example that produces this behaviour.
Any help is appreciated.
(*) Yes, there's a good reason for that. And no, Ext.Window is not an option.