0
我是Sencha Touch和移動應用程序開發新手。 我需要在我的應用程序來實現看起來應該和這樣的表現主要觀點:Sencha Touch 2:導航帶級聯數據視圖的視圖
Group1 Group2
_________________________ _________________________
Item1 Item2 Item3 Item1 Item2 Item3
Group3 Group4
_________________________ _________________________
Item1 Item2 Item3 Item1 Item2 Item3
Group5 Group6
_________________________ _________________________
Item1 Item2 Item3 Item1 Item2 Item3
...
組塊胸圍內聯和垂直滾動。 項目必須水平滾動。 每組的項目數可能因組而異。
組存儲在「storeMainNavGroups」存儲中。 項目存儲在「storeMainNav」商店中,該商店按......「組」分組!
我認爲,它應該通過級聯的數據視圖來完成: 1RST級數據視圖:包含組 2級數據視圖:包含的項目 ,但我不知道。
這是我試過的代碼,但它不起作用:所有項目(對於所有組)都顯示在組上方。 代碼:
Ext.define('MyApp.view.Main', {
extend: 'Ext.navigation.View',
xtype: 'main',
requires: ['Ext.data.Store'],
config: {
navigationBar : {
docked : 'top',
items : [
{
name: 'btnHome',
align: 'left',
xtype: "button",
iconCls: 'home',
ui: 'plain'
}
]
},
items: [
{
title: 'MyApp',
layout: 'vbox',
fullscreen: true,
items: [
{
xtype: 'label',
html: 'some text...'
},
{
xtype: 'dataview',
id: 'listMainNavViewGroups',
useSimpleItems: true,
grouped: true,
inline: {
wrap: true
},
flex: 1,
itemTpl: [
'<div>' +
'<div style="display: block; float: left; font-family: Pictos; font-size: 1.5em; line-height: 120%; margin: 0 20px 0 0;">{icon}</div>' +
'<span style="margin: 0 40px 0 0;">{group}</span>' +
'</div>'
],
store: 'storeMainNavGroups',
items: [
{
xtype: 'dataview',
id: 'listMainNavView',
useSimpleItems: true,
grouped: true,
height: '100px',
inline: {
wrap: false
},
flex: 1,
itemTpl: [
'<div>' +
'<div style="display: block; float: left; font-family: Pictos; font-size: 1.5em; line-height: 120%; margin: 0 20px 0 0;">{icon}</div>' +
'<span style="margin: 0 40px 0 0;">{title}</span>' +
'</div>'
],
store: 'storeMainNav'
}
]
}
]
}
]
}
});
我在做什麼錯? 有沒有更好的解決方案來完成這個?
在此先感謝您的回答和建議。
Arnaud
嗨阿卜杜勒,感謝您的回答。你的解決方案很有趣。但是,我想讓所有組的高度相同,並在每個組內水平滾動項目。事實上,我想我會變得更簡單:一個分組列表,用css樣式對物品進行內聯...無論如何,瀏覽這個對於用戶來說太複雜了...... – Arnaud
如果你給groupPanel一個高度(比如身高:100)在我的代碼中,你會得到所有組的高度相等。將滾動設置爲true將水平滾動項目,因爲佈局是hbox。 –