blob: 88343ee6068f3b80680d7f2664d15ee8f0466014 (
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
|
---
title: ListSelect
order: 17
layout: page
---
[[components.listselect]]
= [classname]#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 both single and multiple
selection modes, which you can set with [methodname]#setMultiSelect()#. It is
visually identical in both modes.
[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);
----
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.
|