Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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.

Info

Reference: Label Source Type

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.

Info

Reference: Field Type.

Layout

Field Layout allows you to arrange fields on the form.
For more details check this

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

If the "Show Password Validation" checkbox is marked as true, the validation error message will be displayed.

Config:

image-20240826-130242.png

Attribute Name

Description

Debounce time in seconds

"Debounce time in seconds" refers to the delay period set to prevent a Event from being called.

Info

Example: If the debounce time is set to 2 seconds, the Event will only execute if there is a 2-second pause.

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.
Variable: If you choose the variable option, you can select the variable where you want to save the field's value. You can bind this variable's value to the component by creating the appropriate variable.

Model: Here, you can select "Model" as the value destination.

Info

Note: Value Destination Model field appears when you select "Model" as the Value Destination Type.

Value Destination Variables

Here you can choose the variable option from this list.

Info

Note: This appears when you select "Variable" as the Value Destination Type.

Value Destination Model

  • From the value destination model, you can select the specific model where you want to save the field's value.

  • By using a model, you can bind a value to the component, with the value coming from the object used during model creation.

...

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.

...