我需要在picker中添加我的商店價值。 Sencha有可能嗎?如果有人知道答案,請幫助我。提前致謝。Sencha Touch如何在Picker中顯示商店中的值?
0
A
回答
1
var picker = Ext.create('Ext.Picker', {
slots: [
{
name : 'limit_speed',
title: 'Speed',
data : [
{text: '50 KB/s', value: 50},
{text: '100 KB/s', value: 100},
{text: '200 KB/s', value: 200},
{text: '300 KB/s', value: 300}
]
}
]
});
Ext.Viewport.add(picker);
picker.show();
您可以用存儲替換數據,請閱讀下面鏈接中提供的文檔。
槽配置有幾個關鍵值:
名:槽的名稱(在此使用Ext.picker.Picker時的GetValues將是鍵)。
title:此槽的標題(如果useTitles設置爲true)。
data/store:用於此插槽的數據或存儲。
http://docs.sencha.com/touch/2.2.0/#!/api/Ext.picker.Picker
從商店設置廣告位數據:
slots : [{
store:null,
name:'picker'
}]
0
這是一個有點老,但它可能會幫助別人。
您可以在初始化函數中調用setStore()方法,然後您需要將拾取器插槽上的valueField屬性設置爲您要從存儲中獲取的值。具有槽和一個拾取器的
實施例初始化:
Ext.define('MyApp.view.JobPicker', {
extend: 'Ext.picker.Picker',
alias: 'widget.jobpicker',
config: {
zIndex: 10,
useTitles: true,
doneButton: {
action: 'donePreviousJobPicker'
},
cancelButton: {
action: 'cancel'
},
slots: [
{
xtype: 'pickerslot',
itemTpl: [
'{jobName}'
],
align: 'center',
name: 'JobSlot',
title: 'Select Previous Job',
valueField: 'indexID'
}
]
},
initialize: function() {
this.callParent();
var jobs = Ext.getStore("JobsPickerStore");
jobs.clearFilter(true);
this.query('pickerslot[name=JobSlot]')[0].setStore(jobs);
}
});
相關問題
- 1. Sencha Touch商店中的唯一值
- 2. 在Sencha Touch中顯示商店數據中的checkboxfield列表
- 3. Sencha Touch Sync商店
- 4. Sencha Touch:在商店列表中顯示另一個商店的字段
- 5. 在sencha touch中註冊JSONm商店
- 6. Sencha touch 2 MVC商店
- 7. Sencha Touch 2列表/商店
- 8. 從JSON商店Sencha Touch Carousel
- 9. 如何在Sencha Touch中的商店之間進行同步
- 10. 如何根據另一家商店在sencha touch中對商店進行排序
- 11. 如何在Sencha Touch中顯示圖像?
- 12. 如何在同一商店中實現多個url sencha touch 2
- 13. 在sencha touch中更改Picker Appearence
- 14. Sencha Touch:更改商店中所有記錄的值
- 15. 如何在Sencha touch中禁用Picker中的特定行
- 16. Sencha Touch 2 - 如何使用ajax/json中止商店加載
- 17. Sencha Touch商店同步回調
- 18. Sencha Touch 2商店獲取記錄
- 19. Sencha Touch 2過濾列表商店
- 20. Sencha Touch商店'類似餘象'事件
- 21. Sencha Touch商店協會不符合?
- 22. Sencha Touch 2商店類型錯誤
- 23. 在Sencha Touch中重複使用ExtJS的模型和商店
- 24. Sencha Touch:Ext.DataView不顯示商店數據
- 25. 在sencha touch 2中創建行可點擊表格從商店
- 26. 在Sencha Touch中動態更改商店模型
- 27. Sencha touch 2:通過代理在商店中檢索信息
- 28. Sencha Touch 1.1 - 在面板中顯示PDF
- 29. 如何在Sencha touch 2中的Ext.Msg.prompt中顯示視圖?
- 30. 從sencha touch中的一個商店調用兩個Web服務
你能澄清嗎? – 2013-05-08 10:34:17
我有我的商店中的值列表。我需要在Ext.Picker中顯示這個值。可能嗎? – Thiru 2013-05-08 10:36:51
朋友請在投票前仔細閱讀問題。 – Thiru 2013-08-19 12:59:46