diff options
author | Johannes Dahlström <johannesd@vaadin.com> | 2015-05-12 17:01:14 +0300 |
---|---|---|
committer | Johannes Dahlström <johannesd@vaadin.com> | 2015-05-20 09:47:15 +0000 |
commit | 26b06bd6361002faa9eb718fb082b4eb71e8b242 (patch) | |
tree | 87e7ec135f8fef8b48909abd54cc1415931ffde9 /shared/src | |
parent | 1042bfde5f306c9b710f6cf4cf8d6b232e0301da (diff) | |
download | vaadin-framework-26b06bd6361002faa9eb718fb082b4eb71e8b242.tar.gz vaadin-framework-26b06bd6361002faa9eb718fb082b4eb71e8b242.zip |
Add focus API to Grid
- Server-side Grid extends AbstractFocusable
- Programmatic focus, tab index, focus/blur listeners
- Client-side Grid implements GWT and Vaadin Focusable
- Programmatic focus, tab index, access keys
Change-Id: Ic8b35ba91f82d5fba8f819897774dc89f94ecf7b
Diffstat (limited to 'shared/src')
-rw-r--r-- | shared/src/com/vaadin/shared/ui/grid/GridState.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shared/src/com/vaadin/shared/ui/grid/GridState.java b/shared/src/com/vaadin/shared/ui/grid/GridState.java index e039f70988..bb35659591 100644 --- a/shared/src/com/vaadin/shared/ui/grid/GridState.java +++ b/shared/src/com/vaadin/shared/ui/grid/GridState.java @@ -19,9 +19,9 @@ package com.vaadin.shared.ui.grid; import java.util.ArrayList; import java.util.List; -import com.vaadin.shared.AbstractComponentState; import com.vaadin.shared.annotations.DelegateToWidget; import com.vaadin.shared.data.sort.SortDirection; +import com.vaadin.shared.ui.TabIndexState; /** * The shared state for the {@link com.vaadin.ui.components.grid.Grid} component @@ -29,7 +29,7 @@ import com.vaadin.shared.data.sort.SortDirection; * @since 7.4 * @author Vaadin Ltd */ -public class GridState extends AbstractComponentState { +public class GridState extends TabIndexState { /** * A description of which of the three bundled SelectionModels is currently |