onAfterColumnDropOrder
fires after the column order was changed with the help of drag-and-drop
void onAfterColumnDropOrder(){ ... };
Example
$$("datatable1").attachEvent("onAfterColumnDrop", function(context, native_event){...});
Details
The drag-and-drop context can have the next properties:
- from - the source object
- to - the target object
- source - the id of the dragged item(s)
- target - the id of the drop target, null for drop on empty space
- start - the id from which DND was started
See also
Back to top