组合框的Extjs setValue不显示displayField

时间:2013-09-25 08:05:32

标签: extjs combobox setvalue

我使用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
                        }
                    }

                }

0 个答案:

没有答案