Add ICU message format support
[chromium-blink-merge.git] / third_party / polymer / v1_0 / components-chromium / iron-autogrow-textarea / README.md
blob7242abce56d74eb185346cc81a56059035ee79eb
1 # iron-autogrow-textarea
3 `iron-autogrow-textarea` is an element containing a textarea that grows in height as more
4 lines of input are entered. Unless an explicit height or the `maxRows` property is set, it will
5 never scroll.
7 Example:
9     <iron-autogrow-textarea id="a1">
10       <textarea id="t1"></textarea>
11     </iron-autogrow-textarea>
13 Because the `textarea`'s `value` property is not observable, you should use
14 this element's `bind-value` instead for imperative updates. Alternatively, if
15 you do set the `textarea`'s `value` imperatively, you must also call `update`
16 to notify this element the value has changed.
18     Example:
19         /* preferred, using the example HTML above*/
20         a1.bindValue = 'some\ntext';
22         /* alternatively, */
23         t1.value = 'some\ntext';
24         a1.update();