1

DataBound イベントの最初の行で、Kendo UI Grid のフォーカスを特定のセルに設定する必要があります。私は MVC に Kendo を使用しています。これが私のコラムの定義です。

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

4

1 に答える 1

3

わかりました、これはあなたのために仕事をするべきコードです:

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
于 2012-08-09T17:14:50.650 に答える