i struggle to get two stores with identical values retrieved by a single jsonp call.
i tried using an onload store listener and then copy the value manually into the other store, but this doesnt work since the user has to be able to refresh the stores manually (where the listeners doesnt get called for some reason).
hope this makes any sense, right now i am simply doing two requests, but as the json content grows, the lovely performance is suffering...
the reason for the required identical store is a global search function for the main store.
well, at the moment both have the same proxies and same model defined. but thats not an optimized way to do it right?
i want to only have one proxy for the "main" store and then just copy all its data 1:1 into the "search" store.
i tried the onload handler with the copy function. it worked, but only until the user refreshes the "main" store manually.