I have a grid, each row has a detail grid.
Every row has an arrow (first-cell), when you click on that arrow the detail-grid appears.
All very nice and well done.
I have a double click function attached to the grid which opens a custom popup window.
But it may not be opened when clicked on the arrow !
How can I achieve this ? This is my double-click function :
alert ('open dialog now);
How do I prevent de open-dialog to show up when clicked on the arrow for the detail-grid ?
Every row has an arrow (first-cell), when you click on that arrow the detail-grid appears.
All very nice and well done.
I have a double click function attached to the grid which opens a custom popup window.
But it may not be opened when clicked on the arrow !
How can I achieve this ? This is my double-click function :
$("#grid").on("dblclick", " tbody > tr", function () { var grid = $("#grid").data("kendoGrid"); gridWaSelectdRowIndex = $(this).closest("tr").index();alert ('open dialog now);
} });