onBeforeColumnDropOrder
fires the moment you drop the column over the target area
function onBeforeColumnDropOrder( // the source column id sourceId: string, // the target column id targetId: string, // the native event object event: Event): void
Example
Section titled “Example”datagrid1.attachEvent("onBeforeColumnDropOrder", function(src, targ, event){ // some code return true; });
also check the next samples:
Details
Section titled “Details”The event is blockable. Returning false will prevent column from being dropped if the order mode is enabled.
See also
Section titled “See also”Articles
API