Change content of select list drop-downs with some advanced settings. For instance, the make and model of a car, or in this case information selecting primary or secondary colours.
On this page:
Use Advanced Fields for this tutorial.
This example uses sample colour JSON data stored in an initial select list. A user's selection then passes information along to subsequent form fields.
Enter JSON data on the Data tab for the first select list.
- Data > Data Source Type: Raw JSON
- Data > Item Type:
<span>{{ item.type }}</span>
Use the appropritate JSON key. The example below usestype
. - API > Property Name:
colourType
- If done correctly, the preview window will show the JSON data in the select list drop-down.
With the first select list working, you can now start on the dynamic list. Choosing primary or secondary from the first select list will send all colours of that type to the second select list.
- Data > Data Source Type: Custom
- Data > Custom Values:
values = (JSON.parse(JSON.stringify(data.colourType.colours)));
Because we are using JSON data, the object needs to be put into a string and then parsed. - API > Property Name:
colourChoice
- The form must be saved and previewed to see the dynamic list work.
Now that someone filling out the form has selected a colour, we can display the colour's information from the same JSON data.
- Create a new Text Field
- Display > Disabled: Checked
- Data > Calculated Value:
value = data.colourChoice.colour || "undefined";
Use JavaScript to format data, for example the rgba array can be joined with commas:
- Data > Calculated Value:
value = data.colourChoice.code.rgba.join() || "undefined";
Show and hide form fields with conditional logic.
Try a working example
View example
Download this example file and import it into your design
example__dynamic_select_lists_schema.json