extjs Combox 調用數據
阿新 • • 發佈:2017-05-30
orm ado readonly cms isp ext code peid pan
1方法一 從 json獲取
var typeStore = new Ext.data.Store({ proxy : new Ext.data.HttpProxy({url : ctx + ‘/cms/faqTypeListCombox.do‘}), reader : new Ext.data.JsonReader({}, [ ‘value‘, ‘name‘ ]) // 顯示的字段名,與server端返回的json中字段一致 }); new Ext.Panel({ columnWidth : .2, layout : ‘form‘, border : false, labelWidth : 58, labelAlign : ‘right‘, items : [ { xtype : ‘combo‘, fieldLabel : ‘所屬分類‘, hiddenName : ‘typeId‘, store : typeStore, emptyText : ‘請選所屬分類‘, triggerAction : ‘all‘, valueField : ‘value‘, displayField : ‘name‘, readonly : true, allowBlank : true, editable : false, // anchor:‘20%‘ width : 130 } ] })
extjs Combox 調用數據