I would like to use the approach described by Derick Bailey in \"A Generic Problem Solution\" in this thread to render a view after a model is fetched. I wi
You can wait until the model is sync'd before rendering the view
var myView = new MyView({ model: myModel }); myModel.on("sync", function(){ myRegion.show(myView); }); myModel.fetch();