Hi ,
I have the similar issue with the post http://www.telerik.com/forums/problem-with-using-celledit-on-next-cell here.
But I need to customize the navigation, not just pressing "tab" but also "enter" to navigate through the grid.
I followed the last post
$('#grid div table tr td input').live('keydown', function(event) {
if (event.which == 9 || event.which == 13) {
var grid = $("#grid").data("kendoGrid");
var $td = $(this).parent();
grid.closeCell();
grid.editCell($td.next());
}
});
But entered value doesn't saved in a cell.
How can I edit next cell with correct close previous input?
I have the similar issue with the post http://www.telerik.com/forums/problem-with-using-celledit-on-next-cell here.
But I need to customize the navigation, not just pressing "tab" but also "enter" to navigate through the grid.
I followed the last post
$('#grid div table tr td input').live('keydown', function(event) {
if (event.which == 9 || event.which == 13) {
var grid = $("#grid").data("kendoGrid");
var $td = $(this).parent();
grid.closeCell();
grid.editCell($td.next());
}
});
But entered value doesn't saved in a cell.
How can I edit next cell with correct close previous input?