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.
私はextjsで働いています。クリックイベントで異なるコンテンツを表示するために、2 つのパネルを持つ 1 つのビューを作成したいと考えています。では、extjs でそのようなビューを作成する方法は?
tabpanel は、複数のパネルを作成できるビューです。
Ext.create('Ext.tab.Panel', { width: 400, height: 400, renderTo: document.body, items: [{ title: 'First Panel' }, { title: 'Second Panel' }] });