Building the Form’s UI

In Web Flows Builder you’ll find the Web Flow you initially created. This will be the Form that users will be directed to upon starting their Journey. Now let's build out the UI that will be contained in that Web Flow.

Working with Web Flow level Variables

  1. Rename the Web Flow to “Form” by double clicking on the Web Flow in the Tree.
675
  1. Click on Variables at the bottom of the screen and in Activity Group Variables, click on the ‘+’ icon. Select the Variable of Type Object that you have created before.
963
  1. Change its name to “user_input”.
777

This way, the user Variable of Type Object will be now available at a Web Flow level. This means that it can be called from any of this Web Flow’s Web Pages.

Building the Web Pages

This Form Web Flow will include three Web Pages: a Personal Info Web Page, an Additional Info Web Page, and a Review Web Page.

Personal Info Web Page

  1. Rename the nested Web Page to "Personal Info" by double clicking on it.
  2. Add a Container and rename it to “Title”.
875

Containers help with the organization of the Form by grouping controls and can be styled to distribute them or make them sit side by side.

  1. Nest a Label by clicking on the ‘+’ icon next to the Container.

  1. With the Label selected, go to the General tab of the Inspector, and in Control Properties > Text, enter your Form’s title.

  1. Add another Container and rename it to “Name”. Add a Label and a Text Input Control nested underneath.
882
  1. With the Text Input Control selected, go to the Inspector section and, in Data Binding, change the auto generated Variable. In order to tie it to the user Variable of Type Object we have created before, enter:
activityGroup.user_input.first_name
775

This way, the value the user enters in this field, will be bound to the App Object in AirData later on.

Why use the activityGroup namespace?

Using the corresponding Variable Namespace is a best practice to make sure Variable work in the scope we need. For example, the namespace corresponding to the Web Flow scope, is called by using activityGroup before the Variable name.

Each scope includes the ones below, that is to say, if working with a Variable at a Web Flow level, it will also be available in all Web Pages, but it won’t be available globally to use on a different Web Flow.

Check the table below:

Variable scopeNamespace
Globalsession.value
Web FlowactivityGroup.value
Web Pageactivity.value
  1. Duplicate the previous container and rename it to “Last Name”. Change the Label to “Last name” as well.
443
  1. With the Text Input Control selected, in Data Binding enter the following:
activityGroup.user_input.last_name

  1. Duplicate the previous Container and rename it to “Phone number”. Rename the Label to “Phone”.
  2. Delete the Text Input and add a Phone Input Control.

  1. In Data Binding enter the following:
activityGroup.user_input.phone

This is how the Web Page should look like so far:

Add Validation to your Web Page

  1. Add a Label Control to type the following error message: “Phone number cannot be empty”. In the General tab of the Inspector section, change the Variant for the an error-like one.

  1. Go to the Advanced tab and in, Is Visible, set up the ISEMPTY Expression so that this error message displays only when the Phone field is incomplete:
ISEMPTY(activityGroup.user_input.phone)

Why use the ISEMPTY function?

In this case, the ISEMPTY function allows you to confirm whether the user completed a required field, hence stopping them from advancing until the information is entered. On the other hand, this function works in tandem with the Phone Input Web Control ensuring that the numbers entered are actually a valid phone number.

  1. Add a Container and nest a Button Control underneath. Rename it to “Next”.

  1. Go to the Actions tab in the Inspector section and add a Navigate to Web Page Action. Select Add Web Page.

  1. Save the app

Additional Info Web Page

  1. Rename the new Web Page to "Additional Info" by double clicking on it.
  2. Add a Container and rename it to “Birthday”. Add a Label and a Date Input Control nested underneath.

  1. With the Date Input Control selected, go to the Inspector section and, in Data Binding, change the auto generated Variable to:
activityGroup.user_input.birthday

Date Input Controls contain a Date Picker Control for further configuration. Select it and, in the Inspector section, change the Date Picker Layout to “1 month” for a clearer calendar view. Also, set Date Range to “past” so that the user can pick their date of birth.

339
  1. Add another Container and rename it to “Email”. Add a Label, rename it to “Email” as well.
  2. Add a Text Input Control nested underneath. With the Text Input Control selected, go to the Inspector and, in Data Binding, enter the following:
activityGroup.user_input.email

  1. Duplicate the previous Container and rename it to “Company”. Rename the Label to “Company”. With the Text Input Control selected, in Data Binding enter the following:
activityGroup.user_input.company

  1. Add a Container and rename it to "Buttons".

  2. Nest two Button Controls of different styles underneath.

  1. Rename the first one to “Back”. Go to the Actions tab in the Inspector section and add a Navigate to Web Page Action. Select the “Personal Info” Web Page.

This way, if the user wants to edit a field from the previous page, can go back to it.

  1. Rename the second one to “Next”. Go to the Actions tab in the Inspector section and add a Navigate to Web Page Action. Select the Add Web Page option for the user to move forward.

  1. So that the Button Controls sit side by side, select the Buttons Container and go to the General tab of the Inspector section. In Distribute Children click on Stack Horizontal. You can also change the spacing to your liking, in this case, the space between the buttons is set in 8px:

  1. Save the app.

Review Web Page

  1. Rename the new Web Page to "Review" by double clicking on it.

  2. Add a Container, rename it to "Title" and nest a Label underneath.

  3. With the Label selected, go to Control properties > Text in the General tab of the Inspector and add a title.

  1. Add another Container and rename it to “Inputs”. Nest six Labels, one for each of the Input Controls you added in the previous Web Pages.

  2. Select the Labels one by one and in Control Properties > Text add the following Variables to bind the Values of the Input fields:

For the fields of type Text:

  • activityGroup.user_input.first_name
  • activityGroup.user_input.last_name
  • activityGroup.user_input.email
  • activityGroup.user_input.company

For the field of Type Phone add the following Expression:

FORMAT_PHONE(
  activityGroup.user_input.phone,
  "INTERNATIONAL"
)

For the of Type Date add the following Expression:

FORMAT_DATE(
  activityGroup.user_input.birthday,
  "MM/DD/YYYY"
)
Why use the FORMAT function?

The FORMAT function allows you to convert an input into a specific output format.

In this case, we are using FORMAT_PHONE to take the inputted phone number and return a string containing the same phone number but in an international format.

Also, we are using FORMAT_DATE to convert the inputted date into the desired format, in this case: MM/DD/YYYY.

You’ll notice that the Web Page looks blank, but you’ll be able to see the entered information once checking the app in the App Preview or by assigning dummy data to this Variables in the Variables Tree.

  1. Then add six more Labels and drag them over each of the Labels containing the Variables with the inputted data. In Text enter the name of the field so that data is displayed in a more orderly fashion once captured:

  1. Add a Container and nest a Button Control underneath. Rename it to “Submit”.

  2. With the button selected, go to the Actions tab in the Inspector and add a Run Data Flow Action.

After building the Data Flow, we’ll come back here to tie it.