1. #1021
    Sencha User
    Join Date
    Apr 2011
    Location
    Russia
    Posts
    72
    Vote Rating
    1
    vicvolk is on a distinguished road

      0  

    Default ...

    ...


    In extjs 4.1.1 this plug-in unfortunately causes some terrible mess-up.

  2. #1022
    Sencha User
    Join Date
    Apr 2011
    Location
    Russia
    Posts
    72
    Vote Rating
    1
    vicvolk is on a distinguished road

      0  

    Default ...

    ...


    This mess-up happens because of some conflict with Ext.tip.QuickTipManager. Inside the definition of register function:
    Code:
    register:function(){b.register.apply(b,arguments)}
    I had to check whether b is defined, so now it is
    Code:
    register:function(){if(b!==undefined)b.register.apply(b,arguments)}
    And now it works perfectly.

  3. #1023
    Sencha User
    Join Date
    Dec 2008
    Posts
    1
    Vote Rating
    0
    unnamed_dev is on a distinguished road

      0  

    Default


    little mod for 4.2x

    attachEvent now unavalible

    Code:
         init: function(grid) {
             var me = this,
             view = me.view;
    
    
             me.callParent(arguments);
             grid.on({
                 afterrender: function() {
                     me.onRender();
                 },
                 single: true
             });
         },
    code really dirty

  4. #1024
    Sencha User
    Join Date
    Apr 2013
    Posts
    3
    Vote Rating
    0
    extjsquicklearner is on a distinguished road

      0  

    Default 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 ?