当我点击Tab键时,Kendo网格UI自动对焦并将下一列放入编辑模式。当我输入ENTER键时,我需要做同样的事情。 有没有办法用enter键
覆盖Tab键功能答案 0 :(得分:0)
您需要将相同的类添加到列中。然后你可以在jQuery中执行此操作:
$('.columnClass input').keypress(function() {
if(event.which === 13) {
var nextItem = $(this).next('.columnClass input');
if( nextItem.size() === 0 ) {
nextItem = $('.columnClass input').eq(0);
}
nextItem.focus();
}
});
13是输入按钮的键码