No edit summary
m (Text replacement - "{{Doc properties" to "{{Csp class properties")
 
(7 intermediate revisions by 5 users not shown)
Line 1: Line 1:
===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===
<syntaxhighlight lang="html">
<syntaxhighlight lang="html">
<_input type="textarea">...</_input>
<_input type="textarea" name="comment" placeholder="Type your comment" required="required">This is the text value</_input>
</syntaxhighlight>
</syntaxhighlight>
<_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
ws-class-props
Line 1: Line 1:
 
{{Csp class properties
|Doc subject=DevOps:Doc/FlexForm
|Subject version=1.0,1.1
|Doc parent=DevOps:Doc/FlexForm/1.0/input
|Doc sort order=110
|Doc target group=User
|Doc synopsis=How to render a textarea input field
}}
ws-page-props
Line 1: Line 1:
{{Doc properties
 
|Doc subject=DevOps:Doc/FlexForm
|Doc parent=DevOps:Doc/FlexForm/1.0.0/input
|Doc sort order=110
|Doc target group=User
|Subject version=1.0.0
}}

Latest revision as of 10: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