Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果用户更改列大小,网格 stateManager 会保存网格的状态。但是,如果您提供重置按钮并使用 grid.reconfigure() ,则不会保存状态。
您如何强制电网通过重新配置发出状态保存?
您可以随时保存当前状态:
grid.saveState();
您可以在重新配置后使用 grid.initState() 。如下所示。
grid.reconfigure(store, columns); grid.initState();
尽管 initState() 在 Ext js 文档中找不到,但它适用于 4.2 版
希望这可以帮助