GridResponsiveStep<T> |
GridResponsiveStep.hide(Grid.Column<?>... columnsToHide) |
Hide the given columns when this responsive step is applied.
|
GridResponsiveStep<T> |
GridResponsiveStep.hide(List<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(Grid<T> grid,
int minWidth) |
Get or create a responsive steps for the given grid and minimum width.
|
GridResponsiveStep<T> |
GridResponsiveStep.setColumns(Grid.Column<?>... columnsToShow) |
Set the columns that should be visible when this responsive step is applied.
|
GridResponsiveStep<T> |
GridResponsiveStep.setColumns(List<Grid.Column<T>> columnsToShow) |
Set the columns that should be visible when this responsive step is applied.
|
<C extends Component> GridResponsiveStep<T> |
GridResponsiveStep.setItemDetailsRenderer(@NonNull 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(Renderer<T> renderer) |
Set the renderer to use for displaying the item details rows when this responsive step is
applied.
|
GridResponsiveStep<T> |
GridResponsiveStep.show(Grid.Column<?>... columnsToShow) |
Show the given columns when this responsive step is applied.
|
GridResponsiveStep<T> |
GridResponsiveStep.show(List<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.
|