-
10 Mar 2010 6:42 AM #1
[CLOSED]An Ext.grid.GridPanel.processEvent fix proposal
[CLOSED]An Ext.grid.GridPanel.processEvent fix proposal
Hello,
Sorry if it was already considered here.
GridPanel.js in v.3.1.1 contains the following fragment:
I've changed it toCode:processEvent : function(name, e){ //.... this.view.processEvent(name, e); },
and some js errors are gone (IE8, strict mode).Code:processEvent : function(name, e){ //.... if (this.view) this.view.processEvent(name, e); },
It seems that processEvent can be called when the grid is already destroyed (in my case, a js code erasing the top panel was loaded on cell click).
-
10 Mar 2010 7:01 AM #2
A similar fix has been added into SVN (the view now does all the event processing).
Evan Trimboli
Sencha Developer
Twitter - @evantrimboli
Don't be afraid of the source code!
Thank you for reporting this bug. We will make it our priority to review this report.


Reply With Quote