Blame view

bower_components/iron-autogrow-textarea/README.md 807 Bytes
73bcce88   luigser   COMPONENTS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  # iron-autogrow-textarea
  
  `iron-autogrow-textarea` is an element containing a textarea that grows in height as more
  lines of input are entered. Unless an explicit height or the `maxRows` property is set, it will
  never scroll.
  
  Example:
  
      <iron-autogrow-textarea id="a1">
        <textarea id="t1"></textarea>
      </iron-autogrow-textarea>
  
  Because the `textarea`'s `value` property is not observable, you should use
  this element's `bind-value` instead for imperative updates. Alternatively, if
  you do set the `textarea`'s `value` imperatively, you must also call `update`
  to notify this element the value has changed.
  
      Example:
          /* preferred, using the example HTML above*/
          a1.bindValue = 'some\ntext';
  
          /* alternatively, */
          t1.value = 'some\ntext';
          a1.update();