A function to return all data from all pages when using Handsontable with paging

Situation: I’m using handsontable with pagination showing monthly summarized data.

Issue. The handsontable getData function will only return the data of the current page.

Goal: Save the data from handsontable from all pages. I want to save the data from handsontable because user may have made changes to the handsontable on multiple pages.

Any ideas?

I have an example of my issue here:
http://jsfiddle.net/fangstar/pajjhnx4/6/

When you click snapshot which calls getData() it only return data from current page and not data from other pages.

Hi @fangstar
the paging example is only a data representation technique it’s not actually a plugin. It was made to display data in some parts and the example above returns only a part of data.
That’s why the getData() method returns only this part of the data and not changed data variable.

Thanks for the reply. Thanks for the clarification that there is not way to get all the data from all pages.