Reforml
GitHub

List

Field that can manage list of value

Schema

<fieldName in value>:
type: checkbox_group
label: string? # fieldName to display
defaultVal: any? # default value
helperText: string? # text to help user to input
disabled: boolean? # disable the input, default false
of?: string | Field<any> # subfield definition to be used for the list
inlineDelete?: boolean # whether the delete button is inline with each subfield
deletable?: boolean # user can delete from the list, default true
editable?: boolean # user can edit existing item in the list, default true
creatable?: boolean # user can add new item to the list, default true
defaultNewVal?: any # default value in new item input
placeholder?: string # placeholder for new item input

Example - list of text

Live Demo
my field
help
value:
{}
Previous:
checkbox_group
Next:
object