Hi,
I can get a basic widget to work when it has a single model. What I'm trying to do is something where I need an array of models, or wait, how about a collection

Now when I started looking at the various source in the CSUI SDK (because lord knows there are no examples of this), it appears like using a collection in the context of smart UI means your use case is that you have a single REST call whose response would give you an array of results that become an array of models, or basically your collection contents.
My use case is a bit different. It is the case where I want to have a small collection of models but each model needs its own REST call to populate.
What I've tried doing is in my collection constructor, I pass in a list which tells me exactly how many models I need, and I populate each model.
Where I am confused is how I get the models to trigger from within my collection, so that when my view loads, it builds the collection, then auto-triggers the appropriate REST call in the url: method in the model...or do I somehow need to do that in the collection? (the url: seems to only allow for one returned URL....I need multiple REST calls).
It would be helpful if there were some more documentation around this. Also, Factories. I *think* the purpose of using a Model Factory or a Collection Factory is to make sure you get your context object embedded into your model or collection. Could someone confirm that is the case?
Thanks
-Hugh