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.
有没有办法在初始化配置之外禁用 GridPanel 的 LoadMask?我知道我可以gridPanel.getView().setLoading(false)从 Ext JS 4 开始。但是有 Ext JS 3.4 的解决方案/解决方法吗?
gridPanel.getView().setLoading(false)
之前或之前的任何事件afterrender都应该这样做。
afterrender
另外,这可以通过jquery完成吗?(鉴于对象层次结构问题)
试试这个:
Ext.apply(gridPanel,{ loadMask: false });