当前位置: 代码迷 >> Web前端 >> comboBox经过DWR调用更新value
  详细解决方案

comboBox经过DWR调用更新value

热度:213   发布时间:2012-11-23 22:54:33.0
comboBox通过DWR调用更新value
创建store
var store = [];

创建comboBox
var combo = new Ext.form.ComboBox({
		store: store,
		fieldLabel:'下拉框',
		//typeAhead: true,
		mode: 'local',
		id:'id',
		name: 'name',
		anchor:'100%',
		editable :true,
		triggerAction: 'all',
		selectOnFocus:true
})	

DWR调用获得store,并更新combo的value
DWREngine.setAsync(false);
dwrClass.function(parameters,function(data){
    	 store=data;
});
combo.store.loadData(store);//从传入的数据块中装载数据,并触发load事件。
DWREngine.setAsync(false);
  相关解决方案