3.2.0

How do you trap a double-click on the new grid?

This is the code to trap a single click:

obj.onCellClicked = function(event, col, row){
    window.status = "row: " + row + " column: " + col;
};


How do you trap a double click?
Rick Jordan
November 1,
The following seems to work fine.

obj.onCellDoubleClicked = function(event, col, row){ 
    window.status = "row: " + row + " column: " + col; 
};
Rick Villela
November 1,
Thanks.

I tried every other variation except that one.

Rick Jordan
November 2,

This topic is archived.

See also:


Back to support forum