Skip to main content

Multi Select

The Multiselect (multiselect) component can be used, to select multiple values, using the Material-UI autocomplete component.

Examples

A basic multi-select with required validation

please select movies

Form Data:
{}

Field Property

NameDescriptionType
isDisabledA boolean indicating whether the multiselect control is disabled.boolean
descriptionA string providing additional information or instructions about the multiselect control.string
requiredA boolean indicating if the multiselect control is required.boolean
valueThe initial value of the multiselect control. It should be an array of selected items.array
displayNameThe display name of the multiselect control, shown as a label or header.string
nameThe unique identifier for the multiselect control instance.string
displayTypeThe type of control, which is "multiselect" in this case.string
readOnlyA readonly field is not editable and value cannot be changedboolean

Common Validation Properties

FieldDescription
requiredMarks a field as mandatory
patternAdds a pattern validation for the field. For email, pattern is supported by default
patternDetailContains info msg and error msg for pattern validation property
minFor Textbox fields, it is the minimum number of characters required for the field. For number fields, it is the minimum value allowed
maxFor Textbox fields, it is the maximum number of characters allowed. For number fields, it is the maximum value allowed
minDetailContains error and info msg for min validation property
maxDetailContains error and info msg for max validation property
requiredDetailContains info msgs about the required validation property