Uses of Class
com.flowingcode.vaadin.addons.gridhelpers.GridResponsiveStep
-
Uses of GridResponsiveStep in com.flowingcode.vaadin.addons.gridhelpers
Methods in com.flowingcode.vaadin.addons.gridhelpers that return GridResponsiveStepModifier and TypeMethodDescriptionGridResponsiveStep.hide(Grid.Column<?>... columnsToHide) Hide the given columns when this responsive step is applied.GridResponsiveStep.hide(List<Grid.Column<T>> columnsToHide) Hide the given columns when this responsive step is applied.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 givengridand minimum width.GridResponsiveStep.setColumns(Grid.Column<?>... columnsToShow) Set the columns that should be visible when this responsive step is applied.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.setItemDetailsRenderer(Renderer<T> renderer) Set the renderer to use for displaying the item details rows when this responsive step is applied.GridResponsiveStep.show(Grid.Column<?>... columnsToShow) Show the given columns when this responsive step is applied.GridResponsiveStep.show(List<Grid.Column<T>> columnsToShow) Show the given columns when this responsive step is applied.GridResponsiveStep.showAll()Show all the grid columns when this responsive step is applied.Methods in com.flowingcode.vaadin.addons.gridhelpers that return types with arguments of type GridResponsiveStepModifier and TypeMethodDescriptionstatic <T> Collection<GridResponsiveStep<T>>GridHelper.getResponsiveSteps(Grid<T> grid) Return the responsive steps of the givengrid.