ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: jplevene on January 19, 2024, 01:14:51 am
-
rowClick: function(event, ui) {
console.log("rowClick");
// When a row is clicked, select or deselect the check box. Must be a data row
if(!empty(ui.rowData))
{
var checked = ui.rowData["state"];
// Update the check box. This causes the issue !!!!
that.infoGrid.pqGrid("updateRow", {rowIndx:ui.rowIndx, newRow:{"state":!checked} });
}
},
rowDblClick: function(event, ui) {
console.log("rowDblClick");
},
The call to updateRow in rowClick prevents the rowDblClick from being triggered.
The idea of rowClick is that a click on the row (not just the check box), selects/unselects the check box.
-
Is there another way to select/deselect the check box with a row click without using "updateRow" that will still trigger the double click on a row event?
-
updateRow updates the DOM of the row, hence 2nd click is registerd as 1st click on new row and rowDblClick is not fired.
As workaround you can use a timeout of 500ms to wait for another click before calling updateRow
or
ui.rowData.state = !ui.rowData.state.
grid.refreshCell(...) //refresh the checkbox cell.