Package io.jmix.flowui.component
Interface LookupComponent.MultiSelectLookupComponent<T>
- Type Parameters:
T- the type of items contained within the lookup component
- All Superinterfaces:
LookupComponent<T>
- All Known Implementing Classes:
AbstractGroupDataGridAdapter,DataGrid,GroupDataGrid,GroupDataGridAdapter,TreeDataGrid
- Enclosing interface:
- LookupComponent<T>
Interface representing a multi-select lookup component.
-
Nested Class Summary
Nested classes/interfaces inherited from interface io.jmix.flowui.component.LookupComponent
LookupComponent.MultiSelectLookupComponent<T> -
Method Summary
Modifier and TypeMethodDescriptiondefault voidEnables multi-selection functionality for the component.voidsetMultiSelect(boolean multiSelect) Sets whether the component allows multi-selection or not.Methods inherited from interface io.jmix.flowui.component.LookupComponent
getSelectedItems
-
Method Details
-
enableMultiSelect
default void enableMultiSelect()Enables multi-selection functionality for the component.This method sets the component to allow the selection of multiple items simultaneously by internally invoking
setMultiSelect(true). -
setMultiSelect
void setMultiSelect(boolean multiSelect) Sets whether the component allows multi-selection or not.- Parameters:
multiSelect- iftrue, multi-selection is enabled; otherwise, multi-selection is disabled
-