Hopefully someone can help me out with a small issue I've run into using ExtJS to create a grid with checkboxes (based on the plugin at http://extjs.com/deploy/dev/examples/grid/edit-grid.js) and grouping. Specifically, in the example below, Expanding the 'letter' group then clicking on the checkbox for the last item in the group causes the grid scroll position to jump back up (to the top in FireFox 3, up a bit but not all the way in IE 6).
If it helps at all, I've found this only seems to occur if the next group in the grid is collapsed (and it doesn't happen for the very last group, presumably because there is no next group).
I've tried digging around, but unfortunately I haven't been able to replicate this behaviour while running with FireBug.
Anyway, if anyone has any pointers on how I might track down and resolve this issue, it would be greatly appreciated.
The following test file exhibits this behaviour (and can be placed in the ext-2.2 directory in a downloaded copy of ext 2.2 to run it)
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<link rel="stylesheet" type="text/css" href="resources/css/ext-all.css"/>
<script type="text/javascript" src="adapter/ext/ext-base.js"></script>
<script type="text/javascript" src="ext-all-debug.js"></script>
<script type="text/javascript">
Ext.onReady(function(){
var reader = new Ext.data.ArrayReader({}, [
{name: 'id'},
{name: 'selected'},
{name: 'name'},
{name: 'type'}
]);
var dummyData = [
['a',false, 'a', 'letter'],
['b',false, 'b', 'letter'],
['c',false, 'c', 'letter'],
['d',false, 'd', 'letter'],
['e',false, 'e', 'letter'],
['1',false, '1', 'number'],
['2',false, '2', 'number'],
['3',false, '3', 'number'],
['4',false, '4', 'number'],
['5',false, '5', 'number'],
['6',false, '6', 'number'],
['7',false, '7', 'number'],
['8',false, '8', 'number'],
['9',false, '9', 'number'],
['!',false, '!', 'symbol'],
['@',false, '@', 'symbol'],
['#',false, '#', 'symbol'],
['$',false, '$', 'symbol'],
['%',false, '%', 'symbol']
];
var dataStore = new Ext.data.GroupingStore({
sortInfo:{field: 'selected', direction: "DESC"},
groupField:'type',
fields: ['id','selected','name','type'],
autoLoad: true,
data: dummyData,
reader: reader
});
var checkColumn = new Ext.grid.CheckColumn({
header: "Selected",
dataIndex: 'selected',
width: 40,
sortable: true
});
var grid = new Ext.grid.EditorGridPanel({
renderTo: 'content',
store: dataStore,
columns: [
checkColumn,
{header: "Name", width: 450, sortable: true, dataIndex: 'name'},
{header: "Type", width: 0, sortable: true, dataIndex: 'type'}
],
view: new Ext.grid.GroupingView({
forceFit:true,
groupTextTpl: '{text} ({[values.rs.length]} {[values.rs.length > 1 ? "Items" : "Item"]})',
hideGroupedColumn: true,
startCollapsed: true
}),
plugins: checkColumn,
clicksToEdit:1,
autoExpandColumn:'name',
frame:true,
width: 700,
height: 150,
title: 'Scroll jumping example',
iconCls: 'icon-grid'
});
});
Ext.grid.CheckColumn = function(config){
Ext.apply(this, config);
if(!this.id){
this.id = Ext.id();
}
this.renderer = this.renderer.createDelegate(this);
};
Ext.grid.CheckColumn.prototype = {
init : function(grid){
this.grid = grid;
this.grid.on('render', function(){
var view = this.grid.getView();
view.mainBody.on('mousedown', this.onMouseDown, this);
}, this);
},
onMouseDown : function(e, t){
if(t.className && t.className.indexOf('x-grid3-cc-'+this.id) != -1){
e.stopEvent();
var index = this.grid.getView().findRowIndex(t);
var record = this.grid.store.getAt(index);
record.set(this.dataIndex, !record.data[this.dataIndex]);
}
},
renderer : function(v, p, record){
p.css += ' x-grid3-check-col-td';
return '<div class="x-grid3-check-col'+(v?'-on':'')+' x-grid3-cc-'+this.id+'"> </div>';
}
};
</script>
</head>
<body>
<div id="content"></div>
</body>
</html>
