Hello,
I wnat to achieve a "custom" statefulness for grids by using "reconfigure" inside an extended applyState function, as seen in this example:
https://stackoverflow.com/questions/...igure-in-extjs
This worked well in ExtJs 5, but leads to a "Maximum call stack size exceeded" error in ExtJs 6.6
Basically, the "reconfigure" function checks if the grid is stateful, if it is, it calls "applyState"
in the ExtJs source, it looks like this:
Code:
if (me.stateful) {
stateId = me.getStateId();
state = stateId && Ext.state.Manager.get(stateId);
if (state) {
me.applyState(state);
}
}
How can I achieve custom statefulness via reconfigure?