Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm developing a Sencha Touch application that has multiple data stores. In order to improve performance, I would like to load the data to these stores in a single HTTP request.

For this to work, the server would output different JSON root elements, one for each store. How can this be done in Sencha Touch?

This question may also be useful for Ext JS developers, as I believe Ext JS is using the same data stores as Sencha Touch.

Any advice would be much appreciated.

share|improve this question

1 Answer

up vote 7 down vote accepted

Its possible! You will have to use an Ajax request to pull all the store data once. Then separate them on the client side and load appropriate data to the stores. You can make use of MemoryProxy class here.

Remember that you will not set a httpProxy to the stores. And data will be loaded to each store using the loadData method.

share|improve this answer
Thanks, I will try this out and let you know if it works. – Nicodemuz Mar 23 '11 at 10:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.