I have a selectable KendoUI grid in my MVC app. I want to do something when the user double-clicks on the grid.
I don\'t see a double-click event for the grid.
Here's another way to handle it:
var grid = $('#myGrid').kendoGrid({
columnMenu: true,
filterable: true,
selectable: true,
// and many more configuration stuff...
}).data('kendoGrid');
grid.tbody.delegate('tr', 'dblclick', function() {
var dataItem = grid.dataItem($(this));
// do whatever you like with the row data...
});