我需要在DataBound事件期间的第一行中将焦点设置为Kendo UI Grid到特定单元格。我正在使用Kendo for MVC,这是我的专栏的定义:
columns.Bound(o => o.QtyCurrentlyReceived).Width(75).Title(“Qty Curr Rx”);
答案 0 :(得分:3)
Okey然后这是应该为你工作的代码:
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