selection
Optional. Enables selection in a grid
selection?: boolean | "cell" | "row" | "complex";
Default value: false
Example
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
selection:"complex",
data: dataset
});
When you set selection:true
, the "complex" mode is applied.
Related sample: Grid. Selection