public static enum GridMultiSelectionModel.SelectAllCheckboxVisibility extends Enum<GridMultiSelectionModel.SelectAllCheckboxVisibility>
Default value is DEFAULT
, which means that the select all is
only visible if an in-memory data is used.
Enum Constant and Description |
---|
DEFAULT
By default, the visibility of the select all checkbox depends on how
the Grid's items are fetched:
Visible, if the data is in-memory
Hidden, if the data is NOT in-memory (lazy)
|
HIDDEN
Never shows the select all checkbox, regardless of data is in-memory
or not (lazy).
|
VISIBLE
Shows the select all checkbox, if in-memory data is used.
|
Modifier and Type | Method and Description |
---|---|
static GridMultiSelectionModel.SelectAllCheckboxVisibility |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GridMultiSelectionModel.SelectAllCheckboxVisibility[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GridMultiSelectionModel.SelectAllCheckboxVisibility VISIBLE
For lazy data, the checkbox is only shown when a count callback has been provided. For lazy data with unknown count, the checkbox will never be shown.
For lazy data, selecting all will result in to all rows being fetched from backend to application memory!
public static final GridMultiSelectionModel.SelectAllCheckboxVisibility HIDDEN
public static final GridMultiSelectionModel.SelectAllCheckboxVisibility DEFAULT
public static GridMultiSelectionModel.SelectAllCheckboxVisibility[] values()
for (GridMultiSelectionModel.SelectAllCheckboxVisibility c : GridMultiSelectionModel.SelectAllCheckboxVisibility.values()) System.out.println(c);
public static GridMultiSelectionModel.SelectAllCheckboxVisibility valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2021. All rights reserved.