I’ve tried replicating this example in this jsfiddle:
https://jsfiddle.net/oz1vgr7h/3/
Assets I’m using:
https://cdnjs.cloudflare.com/ajax/libs/handsontable/6.2.2/handsontable.full.js
https://cdnjs.cloudflare.com/ajax/libs/handsontable/6.2.2/handsontable.full.css
When I try it like so,
var hot = new Handsontable(container, {
data:data,
startRows: 5,
startCols: 5,
colHeaders: true,
minSpareRows: 1
});
I get this: only headers
When I try without colHeaders: true, it works fine:
full handsontable
It works fine with an older version of handsontable (0.10.2) but not with this version.
This works fine with 0.10.2:
chart_config = {data: data,
colHeaders: true,
minSpareRows: 1,
};
$('.handsontable').handsontable(chart_config);