I am using backbone + stickit to give me 2 way bindings between my views and models but have come up against some issues.
How to keep the model up to date with the server?
I have setup my collection to call fetch() every 60 seconds. This gets the latest version of the models from the server and 'intelligently merges' them. But, I am still seeing local changes overwritten. If I have entered some text in a textbox (which is correctly bound using stickit), the changes from the server overwrite the local changes.
How to update the server when the view changes?
Stickit emits a change event on the model when an attribute is changed, but change events are also triggered when attributes on the server have changed. Where is the best place to call model.save() so its only called when stickit emits a change event?
change
event (bad idea)silent
option and then just trigger change event on some attributes if needed (better idea)updateView
tofalse
http://nytimes.github.io/backbone.stickit/#bindings/updateview (good idea)