I am working with textarea in my component, but my ngModelChange seems not to be working.
<textarea [ngModel]="something?.commentaire" (ngModelChange)="something.commentaire">{{something.commentaire}}
But when I change the commentaire of something
in the text area, {{something.commentaire}}
doesn't change.
Any idea how could I solve it?
This issue is different from that of two way binding with elvis-operator, because my question is not as regard the elvis operator and how to use it. Rather it is related to the way, the tag textarea
handles the changes of event.