I would expect that due to data binding this would just work but my UI does not update:
1. Form shows last updated timestamp, form data object (model) like this
self.myform = { tsupdated : 1321652468906, ... other form model stuff ... }}
2. Change form and save, server turns saved form (for testing return entire model object, in practice would return limited items - say only timestamp).
3. I updated form data object in service callback
MyService.save( ..... , function(data){
self.myform = data;
});
UI does not show returned updated timestamp. If I refresh browser it does.
Am I doing this wrong? How can I force UI update?