ExtJs中Combo组件默认选中
2021-04-11 06:26
标签:setvalue owb record label tst name enc load list ExtJs中Combo组件默认选中 标签:setvalue owb record label tst name enc load list 原文地址:https://blog.51cto.com/11147669/2475501{
xtype: ‘commonTypeCombo‘,
name: ‘companyCode‘,
reference: ‘companyCode‘,
fieldLabel: bizI18n_hr.hrMdMat.companyCode,
typeId: ‘HR_COMP_CODE‘,
allowBlank: true,
listeners: {
render:function (combo) {
combo.getStore().on(‘load‘,function (store, record) {
combo.setValue(record[0].get(‘typeId‘))
})
}
}
}