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.
ajax プロキシを使用して Ext.data.TreeStore からデータをロードする単純な Ext.tree.Panel があります。
ツリーノードを展開するときのデフォルトの動作は次のようです。
キャッシュしないように(つまり、常にサーバーから取得するように) キャッシュ オプションをオフにするにはどうすればよいですか?
これをリスナーとしてストアに配置して、目的の動作を取得します。
collapse: function(node){ node.removeAll(); node.set("loaded", false); }