0
newInvoker: function(src, action) {
        var srcWindowName = src.name;
        var rowActionTarget = this.event.target;
        return function(evt) {
            if (!evt) var evt = window.event;
            var win = window.frames["tableContentFrame"].frames[srcWindowName];
            win.event = rowActionTarget;
            win.eval(action);
            tvc.rowActionHandler.hideContainer();
            tvc.stopBubbleEvent(evt);
        };
    },

this code is working fine in Chrome and FF. BUt in IE win.event is always undefined after i assign a value for it.

Please help me with this.

Volker E.
  • 5,911
  • 11
  • 47
  • 64

1 Answers1

0

This Might answer your question. IE has certain limitations which makes it less active on window objects. You have to take care of some script tags and scopes. The above link can help you find the solution to your problem.

Vish
  • 142
  • 1
  • 8