Uter said:
I would love to see such a feature – I would need it also.
I want to use Hotkeys to jump to the rows (Example: Hitting CTRL + 1 would set Focus cell 1 [because I’m using cell-editing] in row 1).
Does someone have experience with such a topic ?
Or does anyone have some tips for me ?
cherrs,
Uter
I’m look through file grid.celledit.js and understand that editCell(iRow,iCol, ed, fg) – is exactly that it I need!
I’m writing this:
loadComplete: function(){
var grid = jQuery(‘#grid_variant’);
…
grid.editCell(1,1,true,true);
}
And select cell (1,1).
Uter You may type e.g. so:
$(‘body’).keydown(function(e){
if(e.keyChar == YOU_KEY)
{
var grid = jQuery(‘#grid_variant’);
if(grid.children().length)
grid.editCell(1,1,true,true);
}
});
But now I don’t, how can I blur selection?!
I need it also!
Is any body some suggestion ?