Hi,
Using the handsontable PRO version 1.1.1 I am having an issue when enabling manualColumnMove and hiddenColumns in the configuration, here is the detail:
Assuming I have a table with 5 columns [A, B, C, D, E], I adjust the column positions to [1,2,3,4,0], getting the expected results, but now I am also hiding the column [2], what I would be expecting is to see [B, C, E, A], that seems to be correct in the headers, but the content displays an empty content for all the rows in column “C”.
hot1 = new Handsontable(table,{
data: Handsontable.helper.createSpreadsheetData(100, 5),
colWidths: 50,
colHeaders: ['A', 'B', 'C', 'D', 'E'],
manualColumnMove: [1,2,3,4,0],
hiddenColumns: {
columns: [0]
},
persistState: true,
rowHeaders: true,
dropdownMenu: true
});
Here is a fiddle with the issue:
http://jsfiddle.net/gvazq82/fnqya2w2/