Package com.storedobject.vaadin
Class HasColumns.SOGrid<T>
java.lang.Object
com.storedobject.vaadin.HasColumns.SOGrid<T>
- Type Parameters:
T
- Bean type of the grid
- Enclosing interface:
HasColumns<T>
This class takes care of creation of the columns in the grid. In order to have behaviours of
HasColumns
,
an instance of this class is required and should be returned to the HasColumns.getSOGrid()
method. (See
the source code of DataGrid
and DataTreeGrid
classes to get an idea). Also, the following methods
of the grid must be overridden: Grid.setColumnReorderingAllowed(boolean)
,
Grid.isColumnReorderingAllowed()
, Grid.getColumns()
, @Grid.getColumnByKey(String)
. These
methods should check whether the grid is rendered using rendered()
method and if not rendered,
these method calls to be delegated into this class.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
acceptColumn
(com.vaadin.flow.component.grid.Grid.Column<T> column, String columnName) This will be invoked when each column is constructed.protected com.vaadin.flow.component.grid.Grid.Column
<T> constructColumn
(String columnName, com.vaadin.flow.component.grid.Grid<T> grid, com.vaadin.flow.data.renderer.Renderer<T> renderer, com.vaadin.flow.function.ValueProvider<T, Comparable> valueProviderForComparator, Comparator<T> comparator) This is where the column is finally constructed.com.vaadin.flow.component.grid.Grid.Column
<T> getColumnByKey
(String columnKey) Get the column of the grid for the given key.Get the columns of the grid.protected String
Get the default themes to be set.boolean
Check whether the column reordering is allowed or not.boolean
rendered()
Check whether the rendering is already done.void
setColumnReorderingAllowed
(boolean allowColumnReordering) Set whether column reordering is allowed or not.
-
Constructor Details
-
SOGrid
-
-
Method Details
-
getDefaultThemes
Get the default themes to be set. The default is "row-stripes wrap-cell-content". This could be overridden inHasColumns.constructed()
method if required.- Returns:
- Default themes.
-
isColumnReorderingAllowed
public boolean isColumnReorderingAllowed()Check whether the column reordering is allowed or not. (Delegated method).- Returns:
- True if column reordering is allowed.
-
setColumnReorderingAllowed
public void setColumnReorderingAllowed(boolean allowColumnReordering) Set whether column reordering is allowed or not. (Delegated method).- Parameters:
allowColumnReordering
- True if column reordering is allowed.
-
getColumns
-
getColumnByKey
-
constructColumn
protected com.vaadin.flow.component.grid.Grid.Column<T> constructColumn(String columnName, com.vaadin.flow.component.grid.Grid<T> grid, com.vaadin.flow.data.renderer.Renderer<T> renderer, com.vaadin.flow.function.ValueProvider<T, Comparable> valueProviderForComparator, Comparator<T> comparator) This is where the column is finally constructed. If you have another implementation, this method can be overridden. (For example, an "editable" grid such as Vaadin's GridPro, may construct an "editable" column). One of the parametersvalueProviderForComparator
andcomparator
will benull
because their values are mutually exclusive.- Parameters:
columnName
- Name of the columngrid
- Grid for which column needs to be created.renderer
- Renderer for the columnvalueProviderForComparator
- Value provider for setting the comparator used for in-memory sorting (Could benull
)comparator
- Comparator used for sorting this column (Could benull
)- Returns:
- Column created. Default implementation use the
Grid.addColumn(Renderer)
method to create the column and set the comparator if it is notnull
.
-
acceptColumn
This will be invoked when each column is constructed. (If you directly create any columns using addColumn methods of theGrid
, then it is highly recommended invoking this method for those columns. Also, make sure that a unique column name is used because column name will be used as the column key of the grid).- Parameters:
column
- Column that is constructedcolumnName
- Name of the column
-
rendered
public boolean rendered()Check whether the rendering is already done.- Returns:
- True if the rendering is done.
-