I believe my issue is easier to illustrate in an example:
Assume I have a Handsontable instance. When I display it in a browser, there are 150 rows with 10 columns. Now assume I apply a couple of change, move some columns and rows around, modify a lot of cells and what not.
After this, I filter one of the columns, and now only 48 rows with 10 columns are being displayed. This is where I’m running into issues.
When I call:
var data = hot.getData();
The data ends up only containing the 48 rows, not the unfiltered 150 rows of data. There’s nothing wrong with this method as it is working as it’s intended, but I was having issues finding a method that would return the full 150 rows that also have the modification applied above (the column and row moving, modifying cells, etc.). Any help would be appreciated.