這裏是我的ExtJS onReady功能爲什麼我的extjs組合框沒有動態填充?
var store = new Ext.data.Store({
proxy: new Ext.data.HttpProxy({
url: '/loginjson.json'
}),
reader: new Ext.data.JsonReader(
{root: 'row', fields:['dblist']}
)
});
store.load();
,在這裏我使用它在我FormPanel中像
renderTo: document.getElementById("loginform"),
title: "Login Form",
items: [{
xtype: 'combo',
fieldLabel: 'genre',
name: 'genre',
store: store,
autoLoad: true,
displayField: 'dblist',
}
和JSON網址Django的回報這樣
http://localhost:8000/loginjson.json
{"row": [{"dblist": "datalist"}]}
,但我的組合框沒有填充我在extJS的某處丟失了但找不到。
@owlness感謝您的第一次嘗試,您能否向我推薦任何pdf或在線門戶,這可以幫助我理清這些問題。因爲我現在是extjs的虛擬人。 – shahjapan 2009-12-24 14:14:48
ExtJS的最佳資源是ExtJS站點(http://www.extjs.com/)。在API文檔,論壇,示例和wiki(「學習中心」)之間,有大量知識可以獲得。 – owlness 2009-12-25 07:54:59
你爲我省了不少功夫。謝謝貓頭鷹 – Sandeep 2012-08-06 08:29:16