You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

The <textarea> tag adds a multi-line text field.

The following attributes are applicable:

AttributeTypeMandatoryDescription
classStringNThis attribute allows defining CSS styles classes description and specifying.
isMandatoryBooleanNThis attribute allows setting a mandatory status to the field. For this, set it equal to 'true'.
isVisibleBooleanNIf this attribute is equal to 'true' (by default), then the widget is displayed; otherwise, it is not displayed.
labelStringNA field label with text information generally describes the field content.
modelStringYThis attribute points to the client controller data object. When the model data changes, it is automatically transferred to the data of the client script.
placeholderStringNSpecify a placeholder for the text field.

readOnly

BooleanN

This attribute allows setting a read-only status to the field. For this, set it equal to 'true'.

styleStringN

This attribute specifies the display settings (size, font, color, etc.) of the widget elements using the CSS syntax.

value

StringN

Specifies the default value for the 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>
  • No labels