Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@
<configuration>
<quiet>true</quiet>
<doclint>none</doclint>
<failOnWarnings>false</failOnWarnings>
<failOnWarnings>true</failOnWarnings>
<links>
<link>https://javadoc.io/doc/com.vaadin/vaadin-platform-javadoc/${vaadin.version}</link>
</links>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,13 +318,13 @@ public Component getFooterComponent() {
}

/**
* Scrolls to the given row index. Scrolls so that the element is shown at
* Scrolls to the given position. Scrolls so that the element is shown at
* the start of the visible area whenever possible.
* <p>
* If the index parameter exceeds current item set size the grid will scroll
* to the end.
*
* @param rowIndex
* @param position
* zero based index of the item to scroll to in the current view.
*/
public void scrollToIndex(int position) {
Expand Down
Loading