Showing posts with label LocalStorage store not persisting on Android phone when app stops using Sencha Touch 2.2 and Phonegap. Show all posts
Showing posts with label LocalStorage store not persisting on Android phone when app stops using Sencha Touch 2.2 and Phonegap. Show all posts

Monday, April 29, 2013

[android help] LocalStorage store not persisting on Android phone when app stops using Sencha Touch 2.2 and Phonegap


This is working fine in my browser but when I install the app on my phone and use it ... it looks fine UNTIL I force it to stop and reopen the app and then all my records are gone.


Im using 2.2 and Phonegap.... any help would be VERY appreciated. Here is my store:



Ext.define('MyApp.store.Presentations', {
extend: 'Ext.data.Store',

config: {
model: 'MyApp.model.Presentations',
sorter: 'title',
grouper: function (record) {
var upperCased = record.get('title')[0].toUpperCase();
return upperCased; //First letter of the title - how we GROUP these
},
autoLoad: true,
proxy: {
type: 'localstorage',
id: 'presentations'
}
}
});


I save like this:



var newPresentation = { title: prezTitle, content: '' };
Ext.getStore('Presentations').add(newPresentation);
var newRecord = Ext.getStore('Presentations').sync();


.

stackoverflow.comm

Google Voice on T-Mobile? [General]

Google Voice on T-Mobile? So I recently switched from a GNex on Verizon to a Moto X DE on T-Mobile. I had always used Google Voice for my v...