My combo elements are not displaying. I am using an inline store as described in this blog :
http://skirtlesden.com/articles/extjs-comboboxes-part-2
items: [
{
xtype: 'combobox',
store: {
fields: ['name'],
data: [
{name: 'Red'},
{name: 'Yellow'},
{name: 'Green'}
]},
maxLength: 64
}
]
But all I see are empty one pixel high spaces where the elements are supposed to render.
Fiddle is here :