diff options
Diffstat (limited to 'server/src/main/java/com/vaadin')
-rw-r--r-- | server/src/main/java/com/vaadin/ui/components/grid/GridDropEvent.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/server/src/main/java/com/vaadin/ui/components/grid/GridDropEvent.java b/server/src/main/java/com/vaadin/ui/components/grid/GridDropEvent.java index e6af56d66d..aa80cdc7b8 100644 --- a/server/src/main/java/com/vaadin/ui/components/grid/GridDropEvent.java +++ b/server/src/main/java/com/vaadin/ui/components/grid/GridDropEvent.java @@ -87,8 +87,9 @@ public class GridDropEvent<T> extends DropEvent<Grid<T>> { * Get the location of the drop within the row. * <p> * <em>NOTE: when dropped on an empty grid, or when {@link DropMode#ON_TOP} - * is used and the drop happened on empty space after last row, the location - * will be {@link DropLocation#EMPTY}.</em> + * is used and the drop happened on empty space after last row or on top of + * the header / footer, the location will be + * {@link DropLocation#EMPTY}.</em> * * @return Location of the drop within the row. * @see GridDropTarget#setDropMode(DropMode) |