I have a user address form with the standard inputs (name, address, zip, etc). When the user returns to their address I need to watch for changes and disable other options.
I tried:
updateAddress: function() {
console.log('updated')
}.observes(App.Address)
App.Address
is an Ember.Object I end up creating that stores all the user address data.
The only time this logged out data was when I loaded the page and when I resubmitted the data. But I need it to check it instantly.
Is it possible for me to watch the entire object without doing a good amount of extra work like discussed here: Ember.js: Observing all object properties ?
EDIT: Added a JSBin: http://emberjs.jsbin.com/zadef/3/edit?html,js,console,output