GridResponsiveStep<T> |
GridResponsiveStep.hide(com.vaadin.flow.component.grid.Grid.Column<?>... columnsToHide) |
Hide the given columns when this responsive step is applied.
|
GridResponsiveStep<T> |
GridResponsiveStep.hide(java.util.List<com.vaadin.flow.component.grid.Grid.Column<T>> columnsToHide) |
Hide the given columns when this responsive step is applied.
|
GridResponsiveStep<T> |
GridResponsiveStep.hideAll() |
Hide all the grid columns when this responsive step is applied.
|
static <T> GridResponsiveStep<T> |
GridHelper.responsiveStep(com.vaadin.flow.component.grid.Grid<T> grid,
int minWidth) |
Get or create a responsive steps for the given grid and minimum width.
|
GridResponsiveStep<T> |
GridResponsiveStep.setColumns(com.vaadin.flow.component.grid.Grid.Column<?>... columnsToShow) |
Set the columns that should be visible when this responsive step is applied.
|
GridResponsiveStep<T> |
GridResponsiveStep.setColumns(java.util.List<com.vaadin.flow.component.grid.Grid.Column<T>> columnsToShow) |
Set the columns that should be visible when this responsive step is applied.
|
<C extends com.vaadin.flow.component.Component> GridResponsiveStep<T> |
GridResponsiveStep.setItemDetailsRenderer(@NonNull com.vaadin.flow.function.SerializableFunction<T,C> componentFunction) |
Set the renderer to use for displaying the item details rows when this responsive step is
applied.
|
GridResponsiveStep<T> |
GridResponsiveStep.setItemDetailsRenderer(com.vaadin.flow.data.renderer.Renderer<T> renderer) |
Set the renderer to use for displaying the item details rows when this responsive step is
applied.
|
GridResponsiveStep<T> |
GridResponsiveStep.show(com.vaadin.flow.component.grid.Grid.Column<?>... columnsToShow) |
Show the given columns when this responsive step is applied.
|
GridResponsiveStep<T> |
GridResponsiveStep.show(java.util.List<com.vaadin.flow.component.grid.Grid.Column<T>> columnsToShow) |
Show the given columns when this responsive step is applied.
|
GridResponsiveStep<T> |
GridResponsiveStep.showAll() |
Show all the grid columns when this responsive step is applied.
|