Overview
A Text Area is an input element designed for users to enter larger amounts of text, typically spanning multiple lines. Unlike a standard text field, which is usually limited to a single line, a Text Area provides more space, making it ideal for longer inputs such as comments, descriptions, or messages.
They may also include features like placeholders, character limits, and formatting options. Text Areas are commonly used in forms, feedback sections, and any interface where extended text input is required.
Attributes of of Text field
Basic:
...
Password Field is a specialized input field used to securely capture and store user passwords in forms and applications. When users type into a Password Field, the characters are typically obscured by dots or asterisks to prevent unauthorized viewing and ensure privacy. This field often includes built-in validation rules to enforce password strength
These features make Password Fields crucial for secure authentication processes in login forms, registration, and other areas requiring sensitive information.
Attributes of Password Field
Basic:
...
Attribute Name | Description | ||
---|---|---|---|
Label | A Label is the name shown to users and can come from various sources.
| ||
Place holder | This is a hint or example text displayed in an input field before the user enters their own data. | ||
Field Type | Here you can choose different field types.
| ||
Layout | Field Layout allows you to arrange fields on the form. | ||
Hide Space Checkbox | After marking this checkbox as true, it will crop hide the extra corners of the fields. | ||
Show Confirm Password Checkbox | If the "Show Confirmed Password" checkbox is marked as true, a confirm password field will be displayed. | ||
Show Password Validation Checkbox |
Config:
Attribute Name | Description | ||
---|---|---|---|
Debounce time in seconds | "Debounce time in seconds" refers to the delay period set to prevent a Event from being called.
| ||
Is Copy Enabled checkbox | After marking the checkbox as true, a copy icon will appear beside the name field. | ||
Help Text | Provides additional guidance or information about a field or element to assist users in understanding how to complete it or what data is expected. | ||
Value Destination Types | This attribute specifies whether the user wants to store a value in a variable or a model. Model: Here, you can select "Model" as the value destination.
| ||
Value Destination Variables | Here you can choose the variable option from this list.
| ||
Value Destination Model |
|
UI:
...
Config:
Attribute Name | Description | ||
---|---|---|---|
Component Size |
| ||
Margin Location | "Margin Location" refers to the spacing around the outside edge of an element | ||
Margin Size | "Margin Size" refers to the amount of space around the outside edges of an element, | ||
Style |
| ||
Classes |
| ||
Alignment | Here, users can select the alignment as either horizontal or vertical. |
Conditional Visibility:
...
Attribute Name | Description | ||
---|---|---|---|
Visibility Type | It determines whether a component is visible on the layout. It offers the following visibility types:
|
Validation:
Attribute Name | Description |
---|---|
Required Type | Here, users can apply validation based on filter conditions.
|
Required Error Message | Enter the error message you want to display for required fields. |
Minimum Length | Set the minimum number of characters required for the input field. |
Min Length Error Message | Enter the error message to display if the input does not meet the required minimum length. |
Maximum Length | Set the maximum number of characters allowed for the input field. |
Max Length Error Message | Enter the error message to display if the input exceeds the maximum allowed length. |
Pattern | A regex pattern or regular expression pattern, is a sequence of characters that defines a search pattern. It's used for pattern matching within strings, such as validating input, searching for specific text, or replacing text. |
Pattern Error Message | A "Pattern Error Message" typically refers to an error generated when input data does not match the expected format defined by a regular expression pattern. This message is usually displayed to inform users that their input is invalid or incorrectly formatted. |
Read Only:
Attribute Name | Description | ||
---|---|---|---|
Read Only Type | It specifies whether a component can be edited by users. It offers the following options:
|
...
Icon Events | Description |
---|---|
onload | This event action is triggered when the Field component is loaded. |
change | This event action is triggered when the field is changed.. |
blur | This event action is triggered when the field is unfocused. |
Below here is the onload event workflow action.
...