0
嗨我做了一個產品名稱和價格列表是一個面板的項目面板有一個dockeditem這是一個工具欄。我想要工具欄內的價格總和,以便人們可以看到總價格。總價值Sencha Touch
我的代碼:
new Ext.Panel({
layout: 'fit',
flex: 1,
items: [
new Ext.List({
layout: 'fit',
title: 'Winkelwagen',
store: NestedListDemo.Winkelwagen_Store,
flex: 1,
itemTpl : '{title} €{prijs}'
})],
dockedItems: [{
xtype: 'toolbar',
dock: 'bottom',
title: 'Totaal'
}]
})
我的店:
NestedListDemo.Winkelwagen_Store = new Ext.data.JsonStore({
model: 'ListProductItem',
storeId: 'WinkelwagenStore',
data: [
],
autoLoad: true
});
誰能告訴我該怎麼做,因爲我不知道