TwinColSelect for Flow
This multiselection component provides a way to move one or more items between two ListBoxes.
TwinColSelect is a component that has two columns and you can select items by clicking buttons to move the entries around.
Sample code
Set<String> strings = new HashSet<>(); strings.add("foo"); strings.add("bar"); TwinColSelect<String> tcs = new TwinColSelect<>(strings); tcs.addSelectionListener(e -> { Notification.show("Selection changed: " + e.getValue()); });
Links
Compatibility
Was this helpful? Need more help?
Leave a comment or a question below. You can also join
the chat on Discord or
ask questions on StackOverflow.
Version
Version 2.0.0 adds support for Renderers so you can use Bean types that don't have a String representation.
- Released
- 2019-05-20
- Maturity
- EXPERIMENTAL
- License
- Apache License 2.0
Compatibility
- Framework
- Vaadin 10+
- Browser
- N/A
TwinColSelect for Flow - Vaadin Add-on Directory
This multiselection component provides a way to move one or more items between two ListBoxes.TwinColSelect is a component that has two columns and you can select items by clicking buttons to move the entries around.
View on GitHubTwinColSelect for Flow version 1.0.0
First version
TwinColSelect for Flow version 2.0.0
Version 2.0.0 adds support for Renderers so you can use Bean types that don't have a String representation.