Last Updated: February 25, 2016
·
8.317K
· ChrisMissal

Custom Display in Ext JS ComboBox

If you want to display multiple fields in the display of an Ext JS ComboBox, you will want to use the listConfig's itemTpl like so:

xtype: 'combobox',
listConfig : {
  itemTpl : '{Name} {Season} {Year}'
}

The above example will override the displayField with the configured template.