3
« on: March 27, 2015, 01:12:44 am »
To be clear, the single click works just fine; but as you might guess, that's not the right user experience for my grid control.
As an example, I have used both of these:
$grid.on("pqgridcelldblclick", function () { window.location = '/Comments/Details/' + ui.dataModel.data[ui.rowIndx][0]; });
$("#grid_parts").pqGrid({
cellDblClick: function (e, ui) { window.location = '/Comments/Details/' + ui.dataModel.data[ui.rowIndx][0]; }
});
If I replace the Double Click for the Single Click, then I get events to fire for the Single click...so, I'm confident I have followed the API documentation correctly. But I get no errors; and nothing shows up in the Console or Debugger to alert me to any issues. It simply doesn't work.
Anyone know what might fix this?
Thanks