如何在MVC网格的Kendo UI中将焦点设置为单元格

时间:2012-08-07 17:27:45

标签: asp.net-mvc kendo-ui

我需要在DataBound事件期间的第一行中将焦点设置为Kendo UI Grid到特定单元格。我正在使用Kendo for MVC,这是我的专栏的定义:

columns.Bound(o => o.QtyCurrentlyReceived).Width(75).Title(“Qty Curr Rx”);

1 个答案:

答案 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