求extjs 的下拉列表动态获取数据向后台发送请求代码
展开全部
Ext.Ws.CommonDatabox = Ext.extend(Ext.form.ComboBox, {
valueField : "value",
displayField : "key",
triggerAction : "all",
emptyText : "请选择",
anchor : '100%',
editable : false,
mode : 'remote',
url : '',
initComponent : function() {
Ext.Hs.CommonDatabox.superclass.initComponent.apply(this,
arguments);
this.store = new Ext.data.Store({
proxy : new Ext.data.HttpProxy({
url : this.url
}),
reader : new Ext.data.JsonReader({
root : 'list',
totalProperty : 'totalCount',
fields : [{
name : this.valueField || 'value'
}, {
name : this.displayField || 'key'
}]
})
})
}
});
Ext.reg('commonbox', Ext.Ws.CommonDatabox);
valueField : "value",
displayField : "key",
triggerAction : "all",
emptyText : "请选择",
anchor : '100%',
editable : false,
mode : 'remote',
url : '',
initComponent : function() {
Ext.Hs.CommonDatabox.superclass.initComponent.apply(this,
arguments);
this.store = new Ext.data.Store({
proxy : new Ext.data.HttpProxy({
url : this.url
}),
reader : new Ext.data.JsonReader({
root : 'list',
totalProperty : 'totalCount',
fields : [{
name : this.valueField || 'value'
}, {
name : this.displayField || 'key'
}]
})
})
}
});
Ext.reg('commonbox', Ext.Ws.CommonDatabox);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
selected:function(){
var val = this.value;
ajax......
}
var val = this.value;
ajax......
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询