draggable
Optional. Defines whether a column is draggable
Usage
draggable?: boolean;
Default value: false
Example
const grid = new dhx.Grid("grid_container", {
columns: [
{ id: "density", header: [{ text: "Density" }], draggable: false },
// more columns configuration objects
],
dragItem: "column",
// more options
});
Related article: Drag-n-drop inside the grid