On ExtJS 5 Chained Stores

This is an archived post from the ExtJS era — the code may be obsolete, but the principles often still apply.

I've started to look into new features of ExtJS 5 and today I have picked Chained Stores that solve, or they should, the problem of multiple views using the same store. If you list a store in stores:[] array of application or controller, Ext instantiates the store and registers it to Store Manager. Configuration option store in view usually points to this one global instance of the store. It's fine because it saves the server round trips but the main drawback is that if you sort or filter the store in one view (clicking a column in a grid) then the global instance gets sorted so are all view using it. That is not desirable. Chained Stores, new in Ext 5, alleviate this problem, however, we must understand how they work, what they are good for and when they cannot be used.

What is a Chained Store

Chained Store is a special kind of store that cannot access the data source directly but via its source store. It maintains its own data snapshots, filters and sorters linking records to its source.

Hence, a record in all chained stores is the same thing as the same record in the source store. Only filters and sorters are unlinked. chained-store

What we should know about Chained Stores?

  1. they have their own links to source store data
  2. if data in the real store change (create, read, update, delete), chained store data also change
  3. updating record in a chained store actually updates the record in the source store, consequently in all chained stores with the same source
  4. if an update causes the main store re-filtering, re-sorting, all stores are affected
  5. sorting and filtering of the main store does not trigger filtering and sorting of chained stores
  6. filtering and sorting of chained stores is independent from each other and from the source store
  7. chained stores do not have load method
  8. they cannot talk to servers directly, they don't have their own proxies and readers
  9. they cannot be used together with paging
  10. they can be used with buffered renderer plugin

That is what I have found so far. If you have any other interesting findings, do not hesitate to post a comment below this post.

Playground

You can play with the chained stores below. Both grid and data view link to the real store with store id ActorStore, so you can get a hold of it from the command-line by calling Ext.getStore('ActorStore').

18 comments

  1. Phaiboon ThussaniyomJune 26, 2014archive
    Thanks for your nice article.
    1. fsakalosJune 26, 2014archive
      Thank you for feedback, we are always happy to provide valuable data to our visitors. --- Filip Sakalos Learn from Saki Support
  2. Peter KellnerJuly 11, 2014archive
    I notice that there is no code shown here (I like that code shown, very helpful). Also, shouldn't source:'ActorStore' be source:'{ActorStore}'?
    1. SakiJuly 14, 2014archive
      Peter, in this case the configuration is correct so source should really be 'ActorStore'. The reason for that is that we are not binding but only configuring the reference to the source store. ActorStore is referenced normally in Application::stores['ActorStore'] hence the name. As a subscriber, you can download the complete code, cannot you? If not, let us know, we fix it.
      1. Rali GaydJuly 16, 2014archive
        Hello, I am a subscriber but i am unable to look at the code.
        1. Filip SakalosJuly 16, 2014archive
          Hello Rali, you don't see the code at all or you see it only as an image (unable to copy&paste)? On all examples or only a specific one?
      2. Peter KellnerJuly 16, 2014archive
        Got it. thanks Saki.
  3. Siva SankarSeptember 13, 2014archive
    Hi I am unable to look the code for chained stores
    1. Filip SakálošSeptember 15, 2014archive
      Hello Siva, as a free member, you can purchase the code for $9.90. If you want to download the code for free, you need monthly/annual subscription.
  4. Robert BrierleyOctober 28, 2014archive
    Saki, Another great article, just used a chained store to create an associations between (2) data tables. Very nice way to show a grid or data view of associated tables.
    1. SakiNovember 5, 2014archive
      Congrats Robert!
  5. Dave KingMay 20, 2015archive
    Hi Saki, I do not see the example code, just the live example. Thanks, Dave
    1. SakiMay 20, 2015archive
      Hello Dave, this is not a bona fide example, it is a playground to test the filtering behavior of normal and chained stores so that you can make a qualified decision which one to use. BTW, the code is nothing special, the grid uses normal store and the data view chained store. Best, Saki
      1. Dave KingMay 20, 2015archive
        Got you.. so the example for ExtJS5 complex data binding is essentially the same thing? Keep up the good work.... :-) it's helped my immensely !
  6. Dave KingMay 20, 2015archive
    The reason I looked at this is I have a scenario where I have a tree where the nodes relate to grids, updating the grid should update the tree and vice versa. There is multiple grids/views linked to the tree. What is the best method for refreshing the views ? I looked at events and store listeners but it's starting to get messy and so I'm thinking it's not the right approach. I was thinking that my tree could be the main store with the various grids as chained stores? As always your advice is appreciated. Dave
    1. SakiMay 20, 2015archive
      The problem here is that tree uses TreeStore while grid uses normal store. You should probably go for a different approach.
  7. Roger BlumJune 17, 2015archive
    The filtering doesn't seem to behave consistently. If you filter for 'Hall' on the Main Store you get 3 records. If you apply the same filter to the Chained Stores you only get 1. How come? Are the filters set up in a different way? Roger
  8. Rabia MahmoodMay 31, 2016archive
    Thank you, very good explanation especially with diagrams and clarifying some things I wouldn't have thought of e.g. chained stores don't have their own load method. Rabia

Comments are closed on archived posts.