Check documentation for the latest version of dhtmlxSuite onRightClick DHTMLX Docs

onRightClick

fires immediately after the right mouse button has been clicked on a grid's row

void onRightClick(string|number id,number ind,object obj);
idstring|numberthe id of the clicked row
indnumberthe index of the cell column
objobjectan event object

Available only in PRO Edition

Example

grid.attachEvent("onRightClick", function(id,ind,obj){
    // your code here
});

Back to top