I’m creating a list of features using a Rally.data.wsapi.TreeStoreBuilder and a rallygridboard to display the list.
I do however need to load additional data in the TreeStore, namely the predecessor and successor stores, in order to also display the content of these in the rallygridboard.
I can do this in the TreeStore load event, but when adding filters on the rallygridboard there is a problem with the order in which data is loaded and displayed.
So my question is, how do I do this?
Thank you for all input.
Your best bet is to probably just refresh the gridboard when you know all of your subsequent stores have been loaded. Something like this?
gridBoard.getGridOrBoard().getView().refresh();
Treestores and the gridboard in general can be fairly clumsy to work with and customize unfortunately. There's just really a ton of complexity there.