TextArea UDR
The TextArea UDR
is used to create an input for text areas.
When this component is used inside a Form UDR the Form UDR can not use encoding PLAIN_TEXT, otherwise the decoding of parameters will fail.
You can use this APL code to create a text area with 10 rows
TextArea myTextArea = udrCreate(TextArea);
myTextArea.rows = 10;
myTextArea.placeholder = "Enter your text here:";
The following fields are included in the TextArea UDR
:
Field | Description |
---|---|
attributes (map<string,string>) | This field may contain extra attributes to be added. |
cssClasses (list<string>) | This field may contain a list of extra values added to class attribute. This is typically used to style the component. Please read more on Bootstrap. |
disabled (boolean) | This field may contain a boolean if the component should be disabled or enabled. |
id (string) | This field may contain the id of the component |
label (string) | This field may contain the label for the text area. |
labelCssClasses (list<string>) | This field may contain a list of extra values added to class attribute of the label. This is typically used to style the component. Please read more on Bootstrap. |
name (string) | This field may contain the name of the component. If the component is present in a Form UDR, the name will be submitted with the form as the key in the Params Map in Request UDR. |
placeholder (string) | This field may contain a placeholder can be used as a help text. |
readonly (boolean) | This field may contain a boolean if the field is readonly. |
required (boolean) | This field may contain a boolean if the component is required. Typically used inside a Form UDR. |
rows (int) | This field may contain a value to specifies how many rows should be visible. |
value (int) | This field may contain a value. |