Here is one of the versions that I tried INSIDE TEXTAREA: (change)="dosomething($event)"
and it's not doing anything. What is the directive for "change"?
(change) didn't work for me neither, try (input) it worked perfectly :
<textarea [(ngModel)]="mytext" (input)="autoGrow($event)"></textarea>