This element adds a multi-line text field.
The following attributes are applicable:
Attribute | Type | Mandatory | Description |
---|---|---|---|
class | String | N | This attribute allows defining CSS styles classes description and specifying. |
isMandatory | Boolean | N | This attribute allows to set a mandatory status to field. For this, set it equal to 'true'. |
isVisible | Boolean | N | If this attribute is equal to 'true' (by default), then the widget is displayed; otherwise, it is not displayed. |
label | String | N | A field label with text information generally describing the field content. |
model | String | Y | This attribute points to the client controller data object. When the model data changes, it is automatically transferred to data of the client script. |
placeholder | String | N | Specifies a placeholder for text field. |
readOnly | Boolean | N | This attribute allows to set a read-only status to field. For this, set it equal to 'true'. |
style | String | N | This attribute specifies the display settings (size, font, color, and etc.) of the widget elements using the CSS syntax. |
value | String | N | Specifies the default value for field. |
textarea
<textarea model="data.name" label="Name" placeholder="Your search request" value=""></textarea> <textarea model="data.description" label="Description" value="" placeholder="Your search request"></textarea>