angular-elastic icon indicating copy to clipboard operation
angular-elastic copied to clipboard

support for dynamic value of the textarea's rows attribute

Open max-l opened this issue 8 years ago • 0 comments

msd-elastic allows setting the text area's row attribute with a constant.

ex: this works:

<textarea msd-elastic ng-model="field.value" rows="5"></textarea>

but not this :

 scope.rows = 5 

<textarea msd-elastic ng-model="field.value" rows="{{ rows }}"></textarea>

in the later case, the rows attribute is ignored

max-l avatar Aug 21 '17 23:08 max-l