Called when user double clicks a record.
onDblClick = function(event)
The event is triggered on the second click event if it was triggered within 0.250 seconds of first click. Please note, before
any double click event, there will alwasy be a click event first. You can add event listener during the object creation:
or after the object has been created:
The event handler is called before the default action of the event is triggered. You can cancel the default action by calling
event.preventDefault(). To perform an action
after the event is fully processed, define event.onComplete function.
See events page in utilities for more details.