Uses of Class
com.vaadin.shared.ui.grid.ScrollDestination
-
Packages that use ScrollDestination Package Description com.vaadin.client.widgets com.vaadin.shared.ui.grid com.vaadin.ui -
-
Uses of ScrollDestination in com.vaadin.client.widgets
Methods in com.vaadin.client.widgets with parameters of type ScrollDestination Modifier and Type Method Description void
Escalator. scrollToColumn(int columnIndex, ScrollDestination destination, int padding)
Scrolls the body horizontally so that the column at the given index is visible and there is at leastpadding
pixels in the direction of the given scroll destination.void
Grid. scrollToColumn(int columnIndexDOM, ScrollDestination destination)
Scrolls to a certain column, using user-specified scroll destination.void
Escalator. scrollToRow(int rowIndex, ScrollDestination destination, int padding)
Scrolls the body vertically so that the row at the given index is visible and there is at least padding pixels to the given scroll destination.void
Grid. scrollToRow(int rowIndex, ScrollDestination destination)
Scrolls to a certain row, using user-specified scroll destination.void
Grid. scrollToRow(int rowIndex, ScrollDestination destination, Runnable callback)
Helper method for making sure desired row is visible and it is properly rendered.void
Escalator. scrollToRowAndSpacer(int rowIndex, ScrollDestination destination, int padding)
Scrolls vertically to a row and the spacer below it.void
Escalator. scrollToSpacer(int spacerIndex, ScrollDestination destination, int padding)
Scrolls the body vertically so that the spacer at the given row index is visible and there is at least padding pixels to the given scroll destination. -
Uses of ScrollDestination in com.vaadin.shared.ui.grid
Methods in com.vaadin.shared.ui.grid that return ScrollDestination Modifier and Type Method Description static ScrollDestination
ScrollDestination. valueOf(String name)
Returns the enum constant of this type with the specified name.static ScrollDestination[]
ScrollDestination. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.vaadin.shared.ui.grid with parameters of type ScrollDestination Modifier and Type Method Description void
GridClientRpc. scrollToColumn(String columnId, ScrollDestination destination)
Command client Grid to scroll to a specific column.void
GridClientRpc. scrollToRow(int row, ScrollDestination destination)
Command client Grid to scroll to a specific data row and its (optional) details. -
Uses of ScrollDestination in com.vaadin.ui
Methods in com.vaadin.ui with parameters of type ScrollDestination Modifier and Type Method Description void
Grid. scrollTo(int row, ScrollDestination destination)
Scrolls to a certain item, using user-specified scroll destination.void
Tree. scrollTo(int row, ScrollDestination destination)
Scrolls to a certain item, using user-specified scroll destination.void
TreeGrid. scrollTo(int row, ScrollDestination destination)
Deprecated.void
Grid. scrollToColumn(Grid.Column<T,?> column, ScrollDestination destination)
Scrolls to the given column, using the given scroll destination.void
Grid. scrollToColumn(String columnId, ScrollDestination destination)
Scrolls to the given column, using the given scroll destination.
-