diff options
author | edler-san <19165931+edler-san@users.noreply.github.com> | 2018-12-05 08:39:56 +0100 |
---|---|---|
committer | Sun Zhe <31067185+ZheSun88@users.noreply.github.com> | 2018-12-05 09:39:56 +0200 |
commit | 10bfb3995258018186aee1711af07e67aaf8c525 (patch) | |
tree | a17954f16af5a83fc2034466407017bbf9f2b3b8 /server | |
parent | eba78039628c3f6b092338d0ff8da3b6821741e4 (diff) | |
download | vaadin-framework-10bfb3995258018186aee1711af07e67aaf8c525.tar.gz vaadin-framework-10bfb3995258018186aee1711af07e67aaf8c525.zip |
Detailed the usage of the GridRowDragger class (#11355)
Diffstat (limited to 'server')
-rw-r--r-- | server/src/main/java/com/vaadin/ui/components/grid/GridRowDragger.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/src/main/java/com/vaadin/ui/components/grid/GridRowDragger.java b/server/src/main/java/com/vaadin/ui/components/grid/GridRowDragger.java index 5e4a4c96f6..56ebe406ca 100644 --- a/server/src/main/java/com/vaadin/ui/components/grid/GridRowDragger.java +++ b/server/src/main/java/com/vaadin/ui/components/grid/GridRowDragger.java @@ -40,7 +40,8 @@ import com.vaadin.ui.Grid.Column; * {@link #getGridDragSource()} and {@link #getGridDropTarget()}.The drop target * grid has been set to not allow drops for a target row when the grid has been * sorted, since the visual drop target location would not match where the item - * would actually be dropped into. + * would actually be dropped into. Additionally, a grid MUST NOT be the target + * of more than one GridRowDragger. * <p> * <em>NOTE: this helper works only with {@link ListDataProvider} on both grids. * If you have another data provider, you should customize data provider |