sortable
Optional. Defines whether a column is sortable
Usage
sortable?: boolean;
Default value: true
Example
const grid = new dhx.Grid("grid_container", {
columns: [
{ id: "land", header: [{ text: "Land" }], sortable: false },
// more columns configuration objects
],
// more options
});
Related article: Sortable columns