Skip to content

onAfterColumnDrop

fires after the column has been dragged and dropped to the target position

function onAfterColumnDrop(
// the source column id
sourceId: string,
// the target column id
targetId: string,
// the native event object
event: Event
): void
datagrid1.attachEvent("onAfterColumnDrop",
function(sourceId, targetId, event){
// your logic
});

Articles

API