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.
Ext JS ツールバーの向きを簡単に変更する方法はありますか? tbarをbbarに変更するようなもの(構成外)
Ext JS 3.4でこれをやろうとしています
構成をオーバーライドして、ツールバーの向きを変更できることはわかっています。しかし、数行のコードでそれを行うのに十分賢い人がそこにいるのではないかと思っていました。
初期構成を変更する方法は、インスタンス化中にオーバーライド構成を渡すことです。たとえば、tbarを使用したパネルの定義がある場合:
Ext.define('MyPanel',{ extend:'Ext.panel.Panel', tbar: [{text:'myButton'}] ... });
インスタンス化するときに、その構成をオーバーライドできます。
Ext.create('MyPanel',{ tbar:undefined, bbar: [{text:'myButton'}] ... });