1. #1
    Sencha User
    Join Date
    Nov 2011
    Posts
    44
    Vote Rating
    0
    Tamuha is on a distinguished road

      0  

    Default Unanswered: Ext.data.store: Is there a "getAll()" Method or something similar available?

    Unanswered: Ext.data.store: Is there a "getAll()" Method or something similar available?


    Hello,

    I'm looking for a method of Ext.data.store to get all the records inside.

    In the API documentation, I haven't found a method, that simply provides you all records like a normal "getAll"-Method for a collection/list.

    Is there something like store.records or store.snapshot or something to get all records of it?

    Thanks in advance,
    Florian

  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


    Code:
    store.data.items
    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 2011
    Posts
    44
    Vote Rating
    0
    Tamuha is on a distinguished road

      0  

    Default


    Is it also possible to get all records in JSON-format (of course by using a JSONStore)??

    So that you get something like [{"id":1, "name": ....}, {"id":2,...}, {...}] ?

    Big thanks in advance :-)