I am using an Ext.form.Combobox on a column model editor, and this ColumnModel is put in to an EditorGridPanel. After I select an item in combobox, the text displayed on combobox is always the valueField, not displayField. How can I keep the displayField on combobox in EditorGridPanel after selecting any item? Thank you so much.

link|improve this question

38% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You need to use the renderer method for the column to display the desired text.

renderer: function(val){
    // select the display text for val from the combobox's store
    return display text;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.