I have a aspnet core grid that currently has the following code set to select the current row:
.Events( events => events.Change("onRowSelect"))
The function works fine and is written as:
function onRowSelect(e) {
var row = this.dataItem(this.select());
.... do work here
)
The users have added a new requirement that the event must be a doubleclick event and I'm not sure how to proceed. Any help would be appreciated.
Thanks