1. #1
    Sencha User
    Join Date
    Nov 2012
    Posts
    34
    Vote Rating
    0
    Jsri is on a distinguished road

      0  

    Default Unanswered: Can the data stored in the Local Storage be visible?(Dynamic charts)

    Unanswered: Can the data stored in the Local Storage be visible?(Dynamic charts)


    Hi,

    I loaded the Store with the field values from a form.
    I checked using alert if the values are getting fetched. It is working.

    But when I load them to the store, I can't see the values in the Store.
    Will it be visible?

    I need to pick these values from the Store to create a chart.
    Please let me know how I can continue to create a dynamic chart.

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,714
    Vote Rating
    438
    Answers
    3113
    mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of

      0  

    Default


    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.
    Mitchell Simoens @SenchaMitch
    Sencha Inc, Senior Forum Manager
    ________________
    http://www.JSONPLint.com - Source to lint your JSONP!

    Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
    https://github.com/mitchellsimoens

    Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/

    Need more help with your app? Hire Sencha Services services@sencha.com

    Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!

    When posting code, please use BBCode's CODE tags.

  3. #3
    Sencha User
    Join Date
    Nov 2012
    Posts
    34
    Vote Rating
    0
    Jsri is on a distinguished road

      0  

    Default


    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