ExtJs中Combo组件默认选中
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ExtJs中Combo组件默认选中相关的知识,希望对你有一定的参考价值。
{
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‘))
})
}
}
}
以上是关于ExtJs中Combo组件默认选中的主要内容,如果未能解决你的问题,请参考以下文章