As long as the data is stored using the store with a localstorage proxy and you are using sync() when saving data and loading the store when trying to view it it will work.
I've included the below code in the form : var values = JSON.stringify(formPanel.getValues(), null, 100);
Ext.Msg.alert('Form Values', values)
store.load();
Ext.getStore('Store1').add(values);
store.sync();
Store contents:
var store = Ext.create('Ext.data.Store', {
model: 'Model',
proxy: 'memory',
config: {
id: 'Store1',
autoLoad: true,
fields: ['name', 'email','password']
}
Can you please look at this code and let me know if I've missed out anything?
I've been trying it for a while now and haven't found a solution yet