Check documentation for the latest version of dhtmlxSuite onBlockRightClick DHTMLX Docs

onBlockRightClick

fires after clicking by the right mouse button on the selection block

void onBlockRightClick(string block,object ev);
blockstringa constant
evobjecta mouseEvent

Example

mygrid.attachEvent("onBlockRightClick",function(block,e){
    //your code here
});

Back to top