Ext 下拉列表 主动加载
customerDs = new Ext.data.JsonStore({url : 'queryCustomerType.action?',fields : [ 'value', 'text' ]});customerCom = new Ext.form.ComboBox({hiddenName : "pageId",fieldLabel : 'pageId',typeAhead : true,triggerAction : 'all',lazyRender : false,mode : 'local',store : customerDs,valueField : 'value',displayField : 'text' });customerDs.load({callback : function(r, options) {customerCom.setValue("2");}}); json:
???