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.
2 つの質問があります。
Sencha Touch 2 でパネルを作成するのはとても簡単です。
var myPanel = Ext.create('Ext.Panel', { html: 'my panel' });
または、Ext.Panel を拡張するクラスを定義したいだけの場合:
Ext.define('myPanel',{ extend: 'Ext.Panel' });
パネルを表示および非表示にするには、パネルへの参照を設定し、それぞれshow()またはhide()メソッドを使用します
show()
hide()