首页 > 代码库 > EXTJS4.2 级联 下拉
EXTJS4.2 级联 下拉
items: [ { xtype: "fieldcontainer", layout: "hbox", items: [{ xtype: ‘combo‘, name: ‘ModelId‘, fieldLabel: ‘服务模型‘, store: comStore_CCServiceModel, valueField: "ModelId", displayField: "ModelName", mode: ‘remote‘,//local editable: false, triggerAction: ‘all‘, autoload: true, listeners: { "select": function (combo, store, index) { var CCTypeId = form.form.findField(‘CCTypeId‘); CCTypeId.clearValue(); var ModelId = form.form.findField("ModelId").getValue(); CCTypeId.store.load({ params: { ModelId: ModelId } }); } } }] },{ xtype: "fieldcontainer", layout: "hbox", items: [{ xtype: ‘combo‘, name: ‘CCTypeId‘, fieldLabel: ‘服务方式‘, store: comStore_CCServiceCategory, valueField: "CCTypeId", displayField: "CCTypeName", editable: false, triggerAction: ‘all‘, allowBlank: false, autoload: false, queryMode: ‘local‘, }] },
EXTJS4.2 级联 下拉
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。