6epcepk
6 Nov 2009, 1:00 AM
Hi, is it possibly to set custom (not next) cell after current cell is has been editing (after press ENTER)?
Im trying like this, but always hightlighting next row..
windowGrid.addListener('afteredit', function(e) {
Ext.Ajax.request({
success: function(response, options) {
var lastRow = windowGrid.getStore().getCount();
windowGrid.startEditing.defer(50, windowGrid, [lastRow, 5]);
//windowGrid.getView().focusCell(lastRow, 5, false);
});
});
Im trying like this, but always hightlighting next row..
windowGrid.addListener('afteredit', function(e) {
Ext.Ajax.request({
success: function(response, options) {
var lastRow = windowGrid.getStore().getCount();
windowGrid.startEditing.defer(50, windowGrid, [lastRow, 5]);
//windowGrid.getView().focusCell(lastRow, 5, false);
});
});