We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.shared.ui.grid.selection.
Interface MultiSelectionModelServerRpc
-
All Superinterfaces:
public interface MultiSelectionModelServerRpc extends ServerRpc
ServerRpc for MultiSelectionModel.
Since:
7.6
Author:
Vaadin Ltd
-
-
Method Summary
All Methods Modifier and Type Method and Description void
deselect(List<String> rowKeys)
Deselect a list of rows based on their row keys on the server-side.
void
deselectAll()
Deselects all rows on the server-side.
void
select(List<String> rowKeys)
Select a list of rows based on their row keys on the server-side.
void
selectAll()
Selects all rows on the server-side.
-
-
-
Method Detail
-
select
void select(List<String> rowKeys)
Select a list of rows based on their row keys on the server-side.
Parameters:
rowKeys
- list of row keys to select
-
deselect
void deselect(List<String> rowKeys)
Deselect a list of rows based on their row keys on the server-side.
Parameters:
rowKeys
- list of row keys to deselect
-
selectAll
void selectAll()
Selects all rows on the server-side.
-
deselectAll
void deselectAll()
Deselects all rows on the server-side.
-
-