textBox
This is a normal text box in which you can enter anything.
Property |
Description |
Example |
faIconName |
If you want to use an icon within the text box, you can enter the name of the icon here. The icon then appears on the left within the text box.
The icons can be found on "Font Awesome". |
"faIconName": "exclamation-square" |
isPassword |
If you would rather have black circles instead of the normal characters as a password, this value must be "true" here. |
"isPassword": true |
maxLenght |
Here you can determine the maximum number of characters. |
"maxLength": "10" |
focus |
If the focus is to be on this field when the page is loaded, this property must be set to "true".
Please note that the property "focus" is only set to "true" for one component, otherwise the last component rendered will receive the focus if several have this property. |
"focus": true |
multiLine |
If multi-line input is desired, set this property to "true". |
"multiLine":true |
textAreaHeight |
If the text box is to have a certain height, this can be specified here. This value is only used if "multiLine" is set to true. |
"multiLine":true, "textAreaHeight": "1000px" |