SenchaTouch2は初めてです。
3つのパネルが入ったコンテナを持つ基本的な例を作成したいと思います。しかし、最初のパネルだけが表示され、残りの2つは非表示になっているようです。どうしたの?これが私のコードです:
Ext.create('Ext.Container',{
fullscreen: true,
layout: 'card',
items: [
{
xtype: 'panel',
html: 'first one',
},
{
xtype: 'panel',
html: 'second one',
},
{
xtype: 'panel',
html: 'third one',
},
]
});
それができるのなら、どうすれば同じ幅に設定できますか?
助けてくれてありがとう。