T
- type parameter corresponding with Grid row typepublic static interface SelectionModel.Multi<T> extends SelectionModel<T>
Modifier and Type | Interface and Description |
---|---|
static interface |
SelectionModel.Multi.Batched<T>
A multi selection model that can send selections and deselections in
a batch, instead of committing them one-by-one.
|
SelectionModel.Multi<T>, SelectionModel.None<T>, SelectionModel.Single<T>
Modifier and Type | Method and Description |
---|---|
boolean |
deselect(Collection<T> rows)
Deselect all rows in a
Collection . |
boolean |
deselect(T... rows)
Deselects one or more rows.
|
boolean |
deselectAll()
De-selects all rows.
|
boolean |
select(Collection<T> rows)
Select all rows in a
Collection . |
boolean |
select(T... rows)
Selects one or more rows.
|
getSelectedRows, getSelectionColumnRenderer, isSelected, reset, setGrid
boolean select(T... rows)
rows
- Grid
row objectsboolean deselect(T... rows)
rows
- Grid row objectsboolean deselectAll()
boolean select(Collection<T> rows)
Collection
.rows
- a collection of Grid row objectsboolean deselect(Collection<T> rows)
Collection
.rows
- a collection of Grid row objectsCopyright © 2016 Vaadin Ltd. All rights reserved.