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.
我在 ASP.NET MVC 环境中,我正在创建一个包含两个部分的页面。
我在网格上使用了 Selectable() 属性。但是有些事情对我来说不是很清楚
如果你想捕捉事件点击,你可以使用
$("body").on("dblclick", "#grid tbody tr", function (e) { var grid= $("#grid").data('kendoGrid'); var rowSelect = grid.select(); var dataSelect = grid.dataItem(rowSelect); });