blob: e57d028800fb928b7d30a6fe34c6b13f4f82e784 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
---
title: ListSelect
order: 17
layout: page
---
[[components.listselect]]
= ListSelect
ifdef::web[]
[.sampler]
image:{live-demo-image}[alt="Live Demo", link="http://demo.vaadin.com/sampler/#ui/data-input/multiple-value/list-select"]
endif::web[]
The [classname]#ListSelect# component is list box that shows the selectable
items in a vertical list. If the number of items exceeds the height of the
component, a scrollbar is shown. The component allows selecting multiple values.
[source, java]
----
// Create the selection component
ListSelect<String> select = new ListSelect<>("The List");
// Add some items
select.setItems("Mercury", "Venus", "Earth", ...);
// Show 5 items and a scrollbar if there are more
select.setRows(5);
select.addValueChangeListener(event -> {
Set<String> selected = event.getNewSelection();
Notification.show(selected.size() + " items.");
});
----
The number of visible items is set with [methodname]#setRows()#.
[[figure.components.listselect.basic]]
.The [classname]#ListSelect# Component
image::img/listselect-basic.png[width=35%, scaledwidth=50%]
Common selection component features are described in
<<dummy/../../../framework/components/components-selection#components.selection,"Selection Components">>.
== CSS Style Rules
[source, css]
----
.v-select {}
.v-select-select {}
option {}
----
The component has an overall [literal]#++v-select++# style. The native
[literal]#++<select>++# element has [literal]#++v-select-select++# style. The
items are represented as [literal]#++<option>++# elements.
|