Hide header column and update hidden column with new value

Tags: #<Tag:0x00007f0b003ccca8>

I created dynamically header column and want to hide some header columns and update those columns value when any error occurs. So I need to hide columns during run-time by code and update value.
Please check my code below for hide header column.
TableHeaderData = new Array();
TableHeaderData.push(“ErrorCount”);
$.each(MasterKeywordData, function (index, mas) {
var obj = mas;
TableHeaderData.push(obj.keywordName);
});
hot = new Handsontable(container, {
autoRowSize: false,
autoColumnSize: false,
colHeaders: true,
colHeaders: TableHeaderData,
hiddenColumns: {
columns: [1, 2],
indicators: false
},

Hey @yogendra.gupta

Thank you for sharing the scenario.

How can I help you. Which what you are currently struggling with?