Check documentation for the latest version of dhtmlxSuite onRowDblClicked DHTMLX Docs

onRowDblClicked

fires right after a row has been double clicked, before a cell editor is opened by a dbl click

void onRowDblClicked(string|number rId,index cInd);
rIdstring|numberthe id of a row
cIndindexthe index of a column

Available only in PRO Edition

Example

grid.attachEvent("onRowDblClicked", function(rId,cInd){
    // your code here
});

Details

if returns false, the event is canceled

Back to top