Hello. I’m the beginner about handsontable.
There is my code.
but hideColumn is not working even i set column width 0.
//handsontable
var rowlength = 1;
var ReportContainer = document.getElementById('divTable');
ReportContainer = new Handsontable(ReportContainer, {
hiddenColumns: {
columns: [0],
indicators:true
},
colHeaders: ['start', 'end'],
columns: [
{width : 100 }, { width : 0}
],
});
ReportContainer.render();
ReportContainer.hideColumn(0);