Using Extjs 3.4 I have a combobox with a tpl config:
var myCombo= new Ext.form.ComboBox(
{
typeAhead: true,
triggerAction: 'all',
store: myStore,
valueField: 'value',
displayField: 'desc',
tpl: '<tpl for="."><div class="x-combo-list-item">{value} - {desc}</div></tpl>'
});
When I click in the combo the value - decription string is correctly shown. But when I select a value - description the combobox only show me the valueField.
Is possible to keep the tpl format after selecting a row from combobox?