m (Text replacement - "{{Doc properties" to "{{Csp class properties") |
|||
(One intermediate revision by one other user not shown) | |||
ws-class-props | |||
---|---|---|---|
Line 1: | Line 1: | ||
− | {{ | + | {{Csp class properties |
|Doc subject=DevOps:Doc/FlexForm | |Doc subject=DevOps:Doc/FlexForm | ||
|Subject version=1.0,1.1 | |Subject version=1.0,1.1 | ||
Line 5: | Line 5: | ||
|Doc sort order=110 | |Doc sort order=110 | ||
|Doc target group=User | |Doc target group=User | ||
+ | |Doc synopsis=How to render a textarea input field | ||
}} | }} |
Latest revision as of 11:01, 15 July 2025
Name
textarea
Type
_input
Synopsis
How to render a textarea input field
Description
_input elements of type="textarea" create larger text input fields that let the user enter a text. This differs from original HTML5 as textarea is not part of an input field, but an input type on its own. It also differs from other _input fields as there is no value you can set. Instead you use an opening _input type and a closing one. The value will be in between. See example.
Parameters
type="textarea"
For all supported argument have a look at the link at the links section.
Example
<_input type="textarea" name="comment" placeholder="Type your comment" required="required">This is the text value</_input>
Note
Links
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/textarea