I am in ASP.NET MVC environment and I am creating a page with two parts.
I have used the Selectable() attribute on the Grid. However some of the things are not very clear to me that
If you want to catch event click, you can use
$("body").on("dblclick", "#grid tbody tr", function (e) {
var grid= $("#grid").data('kendoGrid');
var rowSelect = grid.select();
var dataSelect = grid.dataItem(rowSelect);
});