Save/Load DataTable state with Dynamic loading

I’m using dynamic data with a DataTable. When I save then load the state, filter and sort states are preserved (although not applied), but table content, rowselect and scroll position are not retained.

Is this a known limitation with using states and dynamic data?

Hello,

Information about Saving and Restoring Component is here
To save the current datatable state to the local storage you should call the getState method as in:

var state = grid.getState();
webix.storage.local.put("state", state);

To restore the saved state you should call the setState method:

var state = webix.storage.local.get("state");
if (state)
    grid.setState(state);

I tested the issue and everything works as well
https://snippet.webix.com/b1910c93

Could you please send a snippet with a problematic code?