I'm developing an app and I needed to detect the ionChange or keyUp of an ion-textarea in ionic 2.
Below are examples that work.
my-file.ts
atualizar() {
console.log('Atualizou :)');
}
My .html
<!-- FUNCIONA -->
<ion-checkbox (ionChange)="atualizar()"></ion-checkbox>
<!-- Não funciona -->
<ion-textarea (ionChange)="atualizar()"></ion-textarea>
I looked in the official documentation and found nothing can help me?