Hi MaximGB,
In preparation to upgrading our site to ExtJs 3.0.X (X = latest), today I downloaded ExtJs 3.0.3 and the 3.0-compatible version of your excellent TreeGrid.
I looked in TreeGrid.js and saw this:-
Code:
if (Ext.version == '3.0') {
Ext.override(Ext.grid.GridView, {
ensureVisible : function(row, col, hscroll) {
However, if you look in ext-base-debug.js for the latest ExtJs, you find this:-
Code:
Ext = {
/**
* The version of the framework
* @type String
*/
version : '3.0.3'
};
Is the 'ensureVisible' override specifically for version 3.0, or does it need to be applied to all 3.0.X versions to date?