0
我需要這個佈局位置爲我在煎茶觸摸應用程序2.
代碼的xtype:正常工作
items: [
{
xtype: 'panel',
docked: 'left',
items: [
{
xtype: 'panel',
docked: 'top',
html: '1'
},
{
xtype: 'panel',
docked: 'top',
html: '2'
}
]
},
{
xtype: 'panel',
docked: 'top',
html: '3'
}
]
'面板' 但是,如果我更換一個面板的xtype :'list'
items: [
{
xtype: 'panel',
docked: 'left',
items: [
{
xtype: 'panel',
docked: 'top',
html: '1'
},
{
xtype: 'list',
docked: 'top',
store: 'mystore',
itemTpl:'<div>{Caption}</div>'
}
]
},
{
xtype: 'panel',
docked: 'top',
html: '3'
}
]
它不顯示在瀏覽器中,只顯示xtype:'面板'的面板。我究竟做錯了什麼?
謝謝。
驚聞之一。非常感謝你 – indapublic