How to handle a Kendo UI Grid row double-click event
Use the standard double click event. The first click will select the grid row, adding a .k-state-selected
class to it, and the second click will trigger the double click event.
$("#yourgridname").on("dblclick", "tr.k-state-selected", function () {
// insert code here
});
You can also use dataBound
dataBound: function (e) {
var grid = this;
grid.tbody.find("tr").dblclick(function (e) {
var dataItem = grid.dataItem(this);
...
});
}
from http://www.telerik.com/forums/double-click-on-grid-row-with-angular