Global List Management for MultiEdit and Page Parameters
Globally manage lists in MultiEdit and Page Parameters using dynamic checkbox, select (dropdown), or radio options. This functionality is useful for creating and updating lists of departments, locations, or other repeating data across multiple pages in a consistent and efficient way.
Define list items in a JSON file, specifying display names, values, and visibility (optional). If the list file is not managed within the CMS, use an absolute, publicly-accessible URL for the JSON data file.
Your JSON data file should be structured as follows, you can also use our sample JSON file:
{
"items": [
{
"displayName": "visible for user selection",
"value": "actual value being set",
"hidden": true
},
{
"displayName": "another visible option",
"value": "another value",
"hidden": false
}
]
}
See the Reference Guide for additional code to set up dynamic parameters.
This setup ensures that lists are globally managed and dynamically updated, providing flexibility in how options are displayed and allowing easy addition, removal, or hiding of items.