Check documentation for the latest version of dhtmlxSuite onAfterCMove DHTMLX Docs

onAfterCMove

fires after the column has been moved to a new position

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

Available only in PRO Edition

Example

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

Back to top