我的Sencha觸摸列表不顯示。我所做的只是將根容器更改爲導航視圖,以便可以將其他視圖壓入其中,但導航並不喜歡將「適合」作爲根。所以我把它轉移到另一個'fit'類型的容器中。但是,現在列表不顯示?!Sencha觸摸列表不顯示(再次!)
見下文:
Ext.define('MyApp.view.inbox.MyInbox', {
extend: 'Ext.navigation.View',
alias: 'widget.myinboxview',
requires: [
'Ext.navigation.View'
],
config: {
title: 'My Inbox',
xtype: 'card',
items: [
{
xtype: 'container',
type: 'vbox',
items: [
{
xtype: 'container',
flex: 1,
items: [
{
xtype: 'container',
margin: 10,
layout: {
type: 'hbox'
},
items: [
{
xtype: 'label',
html: 'You have sent'
},
{
xtype: 'label',
html: '0 enquiry',
right: 0
}
]
},
{
xtype: 'container',
margin: 10,
cls: 'linesAboveBelow',
layout: {
type: 'hbox'
},
items: [
{
xtype: 'label',
html: 'You have'
},
{
xtype: 'label',
html: '1 unread response',
right: 0
}
]
}
]
},
{
xtype: 'container',
flex: 5,
layout: {
type: 'fit'
},
items: [
{
xtype: 'list',
store: 'theInboxEnquiryStore',
itemTpl: [
'<div>Date: { CreationDate }</div>'
]
}
]
}
]
}
]
}
});
嗨,謝謝你,這工作!對不起,我的觀點原來是什麼毛病?我使用Sencha Architect來創建佈局,所以我很想知道問題是什麼。 – jaffa 2013-05-09 07:29:08
我已經更新了我的答案。順便選擇這個作爲正確的答案。 – blessenm 2013-05-09 07:43:00