-
GridResponsiveStep.hide(com.vaadin.flow.component.grid.Grid.Column<?>... columnsToHide)
Hide the given columns when this responsive step is applied.
GridResponsiveStep.hide(List<com.vaadin.flow.component.grid.Grid.Column<T>> columnsToHide)
Hide the given columns when this responsive step is applied.
Hide all the grid columns when this responsive step is applied.
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.setColumns(com.vaadin.flow.component.grid.Grid.Column<?>... columnsToShow)
Set the columns that should be visible when this responsive step is applied.
GridResponsiveStep.setColumns(List<com.vaadin.flow.component.grid.Grid.Column<T>> columnsToShow)
Set the columns that should be visible when this responsive step is applied.
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.
Set the renderer to use for displaying the item details rows when this responsive step is
applied.
GridResponsiveStep.show(com.vaadin.flow.component.grid.Grid.Column<?>... columnsToShow)
Show the given columns when this responsive step is applied.
GridResponsiveStep.show(List<com.vaadin.flow.component.grid.Grid.Column<T>> columnsToShow)
Show the given columns when this responsive step is applied.
Show all the grid columns when this responsive step is applied.
Return the responsive steps of the given grid
.