switches to the mode in which dragged items drop in the target location in the same order as they were in the source grid
mode | boolean | true|false to enable/disable mode |
//enable drag order
myGrid.enableDragOrder(true);
//disable drag order
myGrid.enableDragOrder(false);
Back to top