I have a master/detail/detail scenario, and I am going to handle this with 3 grids.
I have started with 3 json stores, and I would like the ability to load all 3 of them at once. This should be possible, in the end we should be able to return
{ success: true, data1:[{...},{...}], data2:[{...},{...},{...}],data3:[{...},{...}] }
because we can specify the root properties in the store.
My question is can ExtJS stores be configured to handle multiple types of data, or do we need to handle this on our own, in any case if you can provide me some samples I would be glad.
This scenario also applies to when writing data back to the server, instead of 3 different posts for each store, I would like to be able to send the updates at once.