-
24 Feb 2013 12:05 AM #1021
...
...
In extjs 4.1.1 this plug-in unfortunately causes some terrible mess-up.
-
24 Feb 2013 12:23 AM #1022
...
...
This mess-up happens because of some conflict with Ext.tip.QuickTipManager. Inside the definition of register function:
I had to check whether b is defined, so now it isCode:register:function(){b.register.apply(b,arguments)}
And now it works perfectly.Code:register:function(){if(b!==undefined)b.register.apply(b,arguments)}
-
6 May 2013 2:14 PM #1023
little mod for 4.2x
attachEvent now unavalible
code really dirtyCode:init: function(grid) { var me = this, view = me.view; me.callParent(arguments); grid.on({ afterrender: function() { me.onRender(); }, single: true }); },
-
7 May 2013 2:40 PM #1024
Will this plugin work in extjs 2.3
Will this plugin work in extjs 2.3
WIll this work with extjs 2.3 ?
how should i add it to the existing one ?


Reply With Quote