Hi Black Moon,
To handle double clicks, you can do the following:
Bind to the ‘rowclick’ event and check the time when the event is raised. If the user clicks the same row in a period of 300 milliseconds, then handle the ‘double click’.
var click = new Date();var lastClick = new Date();var lastRow = -1;$("#jqxgrid").bind('rowclick', function (event) { click = new Date(); if (click - lastClick < 300) { if (lastRow == event.args.rowindex) { // your code here. } } lastClick = new Date(); lastRow = event.args.rowindex;});
Hope this helps.
Best Regards,
Peter Stoev
jQWidgets Team
http://www.jqwidgets.com