Working Example:
let someGrid = new dhx.Grid(null,
{
columns: someColumnData,
multiselection: true,
selection: “row”,
autoWidth: true,
rowHeight: 33
});
Broken Example
let someGrid = new dhx.Grid(null,
{
columns: someColumnData,
multiselection: true,
selection: “row”,
autoWidth: true,
rowHeight: 33,
data: null
});
This has changed from all prior versions.