如何将焦点设置到细胞在剑道UI的MVC网格(How to set focus to cell in

2019-07-30 20:09发布

我需要的数据绑定事件中的焦点上的剑道UI格设置为特定的细胞,在第一排。 我使用的是剑道的MVC,这里是我列的定义:

columns.Bound(O => o.QtyCurrentlyReceived).WIDTH(75).title伪( “数量CURR RX”);

Answer 1:

欧凯那么这是应该为你做的工作的代码:

var theCell = $('#Grid tbody td:eq(3)');//sample selector for a cell
$('#Grid').data('tGrid').editCell(theCell);//ask the Grid to put that cell in edit mode


文章来源: How to set focus to cell in Kendo UI for MVC Grid