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.
ExtJS4.1アプリケーションに、ウィンドウなどのすべてのフローティングコンポーネント用のボタンを含むある種のタスクバーを実装したいと思います。ウィンドウが作成されると、最小化/最大化するボタンがタスクバーに表示されます。
それで、(フローティング)コンポーネントが作成されたか、表示されたことを通知する中心的なイベントはありますか?
これはテストしていませんが、Ext.ComponentManagerには、すべてのコンポーネントのコレクションである「all」というパブリックプロパティがあります。onAvailable()と同じ方法で、「add」リスナーを追加できます。
Ext.ComponentManager.all.on('add', function(map, key, item) { // Check if item is a Window and do whatever });