I have the following static store for now. Everything works fine when i click on the drop down it gives me a loading image and does not go away.
var active_store = Ext.create("Ext.data.Store",{
storeId: 'active',
model: 'Active',
data : [
{active: 'Y'},
{active: 'N'}
],
autoLoad: true
})
{
xtype: 'container',
layout: 'hbox',
items: [
{
xtype: 'combobox',
editable:false,
id:'active',
store: active_store,
triggerAction:'all',
name: 'active',
valueField: 'active',
displayField:'active',
padding: '2 6 2 7'
}
]
}