InfomediaLtd/angular2-materialize

Textarea.trigger('autoresize')

Wouter8 opened this issue · 0 comments

Hi,

I've been searching for quite some time now. I found #168 which mentions the issue I'm having.
Although the label for my textarea does go up the textarea doesn't resize.

In action:

Whenever I type the textarea does resize. I want it to do that automatically after the ngModel gets a value. I tried some things:

setTimeout(() => {
      $('#answer').trigger('keydown');
}, 1500);

$(document).ready(() => {
  $('#answer').trigger('autoresize');
  Materialize.updateTextFields();
})

Help would be appreciated.