在gridfilters中的extsts beforestaterestore

时间:2011-03-08 22:45:30

标签: extjs

在extjs中,gridFilters,我们有:

grid.on({
scope: this,
beforestaterestore: this.applyState,

我无法理解beforestaterestore到底在做什么?

1 个答案:

答案 0 :(得分:2)

在加载网格之前触发beforestaterestore事件,假设在创建网格时使用了stateful配置选项。

您列出的代码将在此事件触发时调用Grid的applyState方法,这会将属性从状态提供程序复制到Grid对象。

我强烈建议您查看ExtJS Documentation for the Grid Panel以获取更多信息。