I have quite a complex page in my application with lots of different models being shown. I live-update several of these models through a /updates
REST call. I pass a last_request_timestamp
parameter and it returns the models that were created or modified since the last call.
I add the models to the store by using store.push(model, model_json)
. However, the templates are not updated after the models have been pushed. How can I ensure that there is a binding between the models in the store and the view?