What is use-form list?
use-form supports nested values in array format. There are handlers available to add, remove, and reorder items in the list:
form.removeListItem
– removes list item at given indexform.insertListItem
– inserts list item at given index (appends item to the end of the list if index is not specified)form.reorderListItem
– reorders list item with given position at specified field
Example of using form lists:
Form lists limitation
use-form
lists are designed to work with objects, any other values are not supported.
This limitation is implemented on purpose to avoid confusing form lists with arrays of
other types of values.