selection
Optional. Enables selection in a grid
selection?: "cell" | "row" | "complex";
Example
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
selection:"complex",
data: dataset
});
Related sample: Grid. Selection