码迷,mamicode.com
首页 > 其他好文 > 详细

ext4.0 二级联动

时间:2017-06-26 10:25:49      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:func   create   empty   listener   combobox   uefi   etc   eset   reader   

var departTypeStore = Ext.create(‘Ext.data.Store‘,{
autoLoad : true,
fields:[‘ID‘,‘DEPART_NAME‘],
proxy : {
type : ‘ajax‘,
url : ‘getCardDepartList.ajax‘,//MECHAN_ID
reader : {
type : ‘json‘,
root : ‘list‘
},
/* extraParams: {
mechanId:rt
}
*/ },

});
var yyStore = Ext.create(‘Ext.data.Store‘,{
autoLoad : true,
fields:[‘MECHAN_IDE‘,‘MECHAN_NAME‘],
proxy : {
type : ‘ajax‘,
url : ‘getMechForJtCardList.ajax‘,
reader : {
type : ‘json‘,
root : ‘mechList‘
},extraParams: {
mechanId:rt
}
},
});

 

 

{
xtype : ‘combobox‘,
name : ‘f.UMI.MECHAN_ID:eq‘,
fieldLabel:‘运营商‘,
id : ‘type‘,
labelWidth:40,
emptyText:‘请选择‘,
store : yyStore,
displayField : ‘MECHAN_NAME‘,
valueField : ‘MECHAN_IDE‘,
flex : 3,
editable:false,
listeners: {// select监听函数
select : function(combobox){
// Ext.Msg.alert("提示",combobox.getValue());
departTypeStore.reset,
departTypeStore.load({
url: "getCardDepartList.ajax",
params: {
mechanId: combobox.getValue()
}
})}
}
},
{
xtype : ‘combobox‘,
name : ‘f.UDEP.ID:eq‘,
fieldLabel:‘充电客户‘,
id : ‘type1‘,
labelWidth:50,
emptyText:‘请选择‘,
store : departTypeStore,
displayField : ‘DEPART_NAME‘,
valueField : ‘ID‘,
flex : 3,
editable:false
}

ext4.0 二级联动

标签:func   create   empty   listener   combobox   uefi   etc   eset   reader   

原文地址:http://www.cnblogs.com/whb11/p/7078963.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!