Angular two ways UI binding is great. It is so easy to use because angular handle binding the value automatically. but what if I want to compute the value in between bindings, something like getter and setters to computed the value. How shall I go about it?
I see that we can use filters for getters, but what about setters?? what I want is when a user inputs a number like 10, I need to compute it before setting to the scope model. any ideas?
thanks in advance.