Skip to main content

dragMode

Optional. Enables drag-n-drop in Treegrid

dragMode?: "target" | "source" | "both";

Example

const treegrid = new dhx.TreeGrid("treegrid_container", { 
dragMode:"source"
});

Drag-n-drop can work in three modes:

  • "target" - a grid takes rows from other grids, while its rows can't be dragged out of it
  • "source" - a grid allows dragging its rows out and can't take rows from other grids
  • "both" - a grid both takes rows from other grids and allows dragging its rows out as well

Related sample: TreeGrid. Drag-n-drop between grids

Related API: