I'm unable to disable res-zing on an md-textarea. This is how I've been trying:
<md-textarea md-no-resize rows="3"></md-textarea>
Doesn't seem to work?
I'm unable to disable res-zing on an md-textarea. This is how I've been trying:
<md-textarea md-no-resize rows="3"></md-textarea>
Doesn't seem to work?
You can add the following css to disable the feature entirely - as described here
textarea {
resize: none;
}
Working plunkr example: https://plnkr.co/edit/r5JhFNd4hKCk6QqTL27B?p=preview
Hope this helps.
<textarea matTextareaAutosize matAutosizeMinRows="9" matAutosizeMaxRows="9" </textarea>
Try disabling autogrow like this:
<md-input-container class="md-block">
<textarea ng-model="" md-maxlength="250" rows="3" md-select-on-focus md-no-autogrow>
</textarea>
</md-input-container>