Check documentation for the latest version of dhtmlxSuite onBeforeCMove DHTMLX Docs

onBeforeCMove

fires when a column moving operation starts

void onBeforeCMove(number cInd,number posInd);
cIndnumberthe index of the moved column
posIndnumberthe index of a new position

Available only in PRO Edition

Example

mygrid.attachEvent("onBeforeCMove", function(cInd,posInd){
    //your code here
});

Back to top