blob: 900147ef1cbee82f5ddf03dd6821596f796a633d (
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
|
---
title: ListSelect
order: 17
layout: page
---
[[components.listselect]]
= [classname]#ListSelect#
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 select = new ListSelect("The List");
// Add some items (here by the item ID as the caption)
select.addItems("Mercury", "Venus", "Earth", ...);
select.setNullSelectionAllowed(false);
// 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[]
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.
|