keepText
Description
Optional. Defines whether the filter text typed by the user is kept in the input after an option is selectedUsage
keepText?: boolean;
Parameters
- false - (default) after selecting an option, the filter text is cleared and the dropdown list is reset to show all options
- true - after selecting an option, the filter text is kept and the dropdown list remains filtered by it
Example
<MultiCombo options={users} keepText={true} />
Related article: Keeping filter text after selection
Related sample: MultiCombo