我正在使用combo.setValue(value)
传递链接到 displayField 的 id 来设置组合框的值。问题是我想显示 displayField 而不是 id,似乎 extjs 没有进行转换。
{
xtype: 'combobox',
fieldLabel: 'Categoria',
name: 'categoria',
labelAlign: 'top',
allowBlank: false,
blankText: 'Campo obbligatorio',
typeAhead: true,
displayField: 'categoria',
valueField: 'id',
store: comboCategoriaStore,
columnWidth: .2,
margin: 5,
listeners: {
select: {
fn: me.onFieldBlur,
scope: me
}
}
}