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 });