I have a combobox which looks like below
{
xtype:'combo',
fieldLabel:'Test',
store:['a','b']
}
Without creating Ext store object I am assigning the array to store and it is displaying the values fine.
At some action i want to update the store with ['d','e']
I have tried by assigning the new values to store like below
comboObje.store=['d','e'];
but it is not updating the values.
how to replace the orginal values with new values in the store.