Check documentation for the latest version of dhtmlxSuite onBeforeBlockSelected DHTMLX Docs

onBeforeBlockSelected

fires when the user starts selecting a block

void onBeforeBlockSelected(string rId,number cInd);
rIdstringstart selection point row ID
cIndnumberstart selection point column index

Example

mygrid.attachEvent("onBeforeBlockselected",function(id,ind){
    //your code here
})

Back to top