Loop Control Settings
Add a Loop control that contains multiple controls that loop multiple times to allow entering multiple items, each of which requires multiple pieces of information.
Control Description
Use the Loop control to contain one or more Screen controls to duplicate the contained set of controls a specified number of times, thereby minimizing the design work to duplicate that set of controls in a Screen. Use the Loop control when the Request participant must enter multiple instances of the same set of information, each of which contain multiple components.
For example, use a Loop control when a university registrar's office must enter the following information for each new university student enrolling to the university:
Information | Screen Control |
First Name | Line Input control |
Last Name | Line Input control |
Age | Line Input control |
Sex | Select List control |
Housing Dormitory | Select List control |
During the in-progress Request, the Loop control displays the set of controls contained in the Loop control a specified number of times so that the university registrar's office may enter the same information for each new student from one Screen page. The Submit Button control to submit the Screen must be placed outside of the Loop control. Otherwise, a Submit Button control displays in each set of controls placed into the Loop control. See a design example.
Do not place another Loop control inside the first Loop control.
Use the _parent
JSON Key to Reference Request Data from Controls in a Loop Control
_parent
JSON Key to Reference Request Data from Controls in a Loop ControlThe Loop control uses a unique JSON key available to any control placed within the Loop control to reference Request data. Controls that are placed into a Loop control for duplication are within a container and may only access another control's data that is in the same Loop control. Use the _parent
JSON key in a control's settings placed within a Loop control to reference Request data outside of that Loop control.
The _parent
JSON key only applies to controls placed into a Loop control or Record List control.
Consider the following examples:
A Line Input control placed within a Loop control requires a default value to display from another Line Input control used during that Request of which its Variable Name setting is
Line_Input_Data
. From the Line Input control placed within the Loop control, enter the following into the Default Value setting:{{ _parent.Line_Input_Data }}
.A Select List control placed within a Loop control requires its options to display from another Select List control's options used during that Request of which its Variable Name setting is
Select_List_Options
. While configuring the Select List control placed within the Loop control to use Request data as its data source, enter the following into the Options Variable setting:_parent.Select_List_Options
.
Permissions Required
Your user account or group membership must have the following permissions to design a Screen unless your user account has the Make this user a Super Admin setting selected:
Screens: Edit Screens
Screens: View Screens
See the Screens permissions or ask your Administrator for assistance.
Add the Control to a Screen
Follow these steps to add this control to the Screen:
View the Screen page to which to add the control.
Drag the Loop icon into the Screen Builder canvas. Existing controls on the Screens Builder canvas adjust positioning based on where you drag the control.
Configure the Loop control. See Settings.
Drag and place the Screen control(s) into the Loop control that you intend the Request participant to enter information each time the Loop control repeats. As a best practice, do not do the following:
Do not place a Submit Button control inside the Loop control.
Do not place another Loop control inside the first Loop control.
See Control Description for an example.
Configure each control placed into the Loop control. If a control placed into the Loop control requires to use Request data, use the
parent
JSON key. See Use theparent
JSON Key to Reference Request Data from Controls in a Loop Control.Validate that the control is configured correctly. See Validate Your Screen.
Below is a Loop control in Preview mode.
Move the Control on the Page
See Move a Control on the Page.
Copy the Control with its Settings
Copying a control also copies the current settings of that control. The copied control displays below other controls placed on that Screen page.
Follow these steps to copy a control:
Select the control to be copied.
As a best practice, after copying a control, change the Variable Name setting value for the copied control to its own unique variable value. Otherwise, in-progress Requests that use this Screen read from and send data to both controls.
Delete the Control from a Screen
Consider the following when deleting a configured Loop control:
Deleting a Loop control also deletes the controls placed into it.
Deleting a control also deletes configuration for that control. If you add another control, it will have default settings.
Follow these steps to delete a control from a Screen page:
Select the control to be deleted.
Settings
The Loop control has the following panels that contain settings:
Configuration Panel Settings
Click the control while in Design mode, and then click the Configuration panel that is on the right-side of the Screen Builder canvas.
Below are settings for the Loop control in the Configuration panel:
Data Source
Make note of best practices when configuring a Loop control that contains a Select List control. If the Select List control references a JSON array from a data source, configure the Select List control to reference the JSON object containing the JSON array and not its values. Then duplicate the JSON array in the Loop control. See Duplicate the JSON Array in a Select List Control Used in a Loop Control.
This setting is not available in Display-type Screens since the content in these Screens is not editable.
Select whether to create a new array of JSON objects designed from Screen controls within the Loop control or to reference an existing JSON array of objects:
New array of JSON objects designed from Screen controls
When this option is selected, the Default Loop Count setting displays to indicate how many times to repeat the control(s) that the Loop control contains. See a design example.
Existing JSON array of objects
When this option is selected the Default Loop Count setting does not display since the JSON array specifies how many times to repeat the control(s) that the Loop control contains.
Variable Name
Edit the default Variable Name setting value for this control if necessary. The Variable Name setting value represents data in this control during Requests. Ensure that the Variable Name setting value is a unique name from other controls in this Screen and contains at least one letter. This is a required setting.
Use the Variable Name setting value in the following ways:
Reference this control's value in a different Screen Builder control. To do so, use mustache syntax and reference this control's Variable Name value in the target control. Example:
{{ LoopControl }}
.Reference this value in Visibility Rule setting expressions.
See best practices when editing a Request variable name.
Default Loop Count
This setting is not available in Display-type Screens since the content in these Screens is not editable.
Allow Additional Loops
This setting is not available in Display-type Screens since the content in these Screens is not editable.
Advanced Panel Settings
Click the control while in Design mode, and then click the Advanced panel that is on the right-side of the Screen Builder canvas.
Below are settings for the Loop control in the Advanced panel:
Visibility Rule
Note the following regarding how to use visibility rules:
To make this control hidden until another control contains a value, enter the Variable Name setting value of that control to this control's Visibility Rule setting.
Device Visibility
Select on which device types this control displays:
Desktop: The control displays only on desktop devices. Enable the Show for Desktop toggle key.
Mobile: The control displays only on mobile devices. Enable the Show for Mobile toggle key.
CSS Selector Name
See the following best practices regarding custom CSS in Screens:
Related Topics
Screen TypesScreen Builder ModesValidate Your ScreenGenerate Your Screen Using AI AssistantBootstrap Component Control SettingsBootstrap Wrapper Control SettingsCheckbox Control SettingsDate Picker Control SettingsFile Download Control SettingsFile Preview Control SettingsFile Upload Control SettingsGoogle Places Control SettingsImage Control SettingsLine Input Control SettingsMulticolumn / Table Control SettingsNested Screen Control SettingsPage Navigation Control SettingsPhoto/Video Control SettingsRecord List Control SettingsRich Text Control SettingsSelect List Control SettingsSignature Control SettingsSubmit Button Control SettingsTextarea Control SettingsExpression Syntax ComponentsValidation Rules for "Validation Rules" SettingsReference Magic Variables in ProcessMaker Platform AssetsLast updated