Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在模板驱动的 kendo-grid 方法中,编辑单击时需要将单击的单元格聚焦在行中。因为如果它不可用,只需在单元格中单击两次即可编辑内容。(用于数据绑定的表单控件。)
您可以使用具有特定行索引和列索引的 find 方法来设置焦点。
这里代码供您参考。
var ColIndex=2, grid = $("#grdTest").data("kendoGrid"); setTimeout(function () { grid.tbody.find("tr:eq(" + (grid._data.length - 1) + ") td:eq(" + (ColIndex - 1) + ") input").focus(); }, 400);
我希望这能帮到您。