在extjs中,gridFilters,我们有:
grid.on({
scope: this,
beforestaterestore: this.applyState,
我无法理解beforestaterestore到底在做什么?
答案 0 :(得分:2)
在加载网格之前触发beforestaterestore
事件,假设在创建网格时使用了stateful
配置选项。
您列出的代码将在此事件触发时调用Grid的applyState
方法,这会将属性从状态提供程序复制到Grid对象。
我强烈建议您查看ExtJS Documentation for the Grid Panel以获取更多信息。