Hi
I'm new to AngularJS and working on my first project - and I must say, this framework seems very promising.
My scenario:
I've got data loaded of the server and into a model in the client.
Now I want to do things with the data, and have run into 2 use cases that I'm not sure how to handle.
1. Formating data when displaying
Is there any way to manipulate data, like e.g {{PhoneFormat(model.phoneNumber)}} or some other syntax?
2.Do something on data change
I plan not to update data on the server whenever something changes, but rather do bulk-updates when the users is done editing the dataset.
For that reason I've included a dataChanged property in the model, and would like to have that set=true when ever a value in the record/item changes.
I think the concept of watches is what I need, but ...
Thank you for any clues you can provide,
/Henrik