I am using AngularJS for a simple SPA.
This application includes a <textarea>
which shows, by default a value from a binding:
<textarea>{{activeField.rawContent}}</textarea>
One should be able to edit content in this textarea, then save it to a database.
My problem is, as soon as an input was made, the textarea will save this input and afterwards no more show the content of the binding, even when activeField.rawContent
is updated.
How could i prevent this behaviour?