-
10 Jul 2012 10:04 AM #1
[4.1.1]Ext.grid.header.Container:getHeaderIndex - typo in attribute name
[4.1.1]Ext.grid.header.Container:getHeaderIndex - typo in attribute name
I didn't test it, but looking at the code... isgroupHeader should be isGroupHeader as attributes are case-sensitive.
Code:Ext.define('Ext.grid.header.Container', { extend: 'Ext.container.Container', ... getHeaderIndex: function(header) { // If we are being asked the index of a group header, find the first leaf header node, and return the index of that if (header.isGroupHeader) { header = header.down(':not([isgroupHeader])'); // <-- typo? } return Ext.Array.indexOf(this.getGridColumns(), header); }, ...
Success! Looks like we've fixed this one. According to our records the fix was applied for
EXTJSIV-6759
in
4.1.


Reply With Quote