Currently I am working with Angular2 and TS using kendo-grid
. It allows me to access the data of the clicked row, but only for a singleClick event like so:
(cellClick)="onCellClick($event.dataItem)"
.
However, there is no direct way to achieve this for a doubleClick event. The code would look something like:
(dblclick)="onDblClick(<<CANNOT_GET_ROW_DATA_HERE>>)"
.
Does anyone know how to handle a double click event without relying on cellClick, and still be able to access the exact row we are interested in?