Hello,
I am using Handsontable Pro to export my data as a csv file with the option exportHiddenColumns: false. It works great until hiddenColumns and manualColumnMove plugin is enabled.
If I move columns around and hide some columns then it does not export correctly. That is the csv file will show columns that are supposed to be hidden. Hopefully the below example demonstrates what I mean.
- Original columns: [A, B, C, D, E]
- After moving columns: [A, C, B, D, E]
- After hide column: [A, B, D, E]
After doing the above operations then exporting to file you will see the columns [A, C, D, E] in the csv. If a JSFiddle is needed to demo this then please let me know.
This is really frustrating because the ExportToFile plugin advertises that it can export to file without exporting hidden columns, but the actual functionality differs.
Thanks.