Usage Scenario: Form Autofill

When a user enters their first and last name in a registration form, the full name field should be automatically created from these two pieces of information.

(e.g. ‘Maria’ + “Gomes” → ‘Maria Gomes’)

Application Steps:

  1. Create three Text Input fields on the form screen:
    • FirstNameInput
    • LastNameInput
    • FullNameInput
  2. Define the following action for the FirstNameInput and LastNameInput fields: OnChange → UI Control → Set Value Of
  3. Action Parameters:
    • Component to Change: FullNameInput
    • Value

This way, when the user enters a value in the first name or last name field, the full name field is automatically updated.