I am trying to get data that is being passed and load it into various textfields. Right now, I have a .html file which contains this:
Try ArrayStore Like this.
var newStore= new Ext.data.ArrayStore({ fields: ['address', 'city', 'state', 'zip'] }); newStore.add(res); newStore.commitChanges()
This should work.