-
31 Jan 2013 7:07 AM #11
In blue, code needed to add support to the grid reconfigure event
Code:init: function(grid) { grid.on('afterrender', function(){ Ext.Array.forEach(grid.query('headercontainer'), this.initColumn, this);grid.on('reconfigure', this.handleGridReconfigure, this);}, this); }, handleGridReconfigure: function(grid){ Ext.Array.forEach(grid.query('headercontainer'), this.updateColumnTextIfNeeded, this); },
Similar Threads
-
How to show the tooltip of button with a long width but a short text?
By zch_heero in forum Ext 2.x: Help & DiscussionReplies: 3Last Post: 24 May 2010, 10:52 PM -
grid column wrap normal but edit weird
By huhulucy90 in forum Ext 3.x: Help & DiscussionReplies: 1Last Post: 1 Oct 2009, 11:11 PM -
Why have two versions (short hand and long form) of so many methods and properties?
By Arthur.Blake in forum Community DiscussionReplies: 6Last Post: 22 Apr 2008, 11:11 PM


Reply With Quote