summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTatu Lund <tatu@vaadin.com>2019-10-03 09:38:20 +0300
committerZhe Sun <31067185+ZheSun88@users.noreply.github.com>2019-10-04 10:20:39 +0300
commita098e58ceb348a2b22a4a44071fe84bfcf2ebc3d (patch)
tree98120623509f8d9cbcbe36ae6b27e29476b6b604
parent0fa5bc69b2e988664f80e1e0583afdb5cd808a25 (diff)
downloadvaadin-framework-a098e58ceb348a2b22a4a44071fe84bfcf2ebc3d.tar.gz
vaadin-framework-a098e58ceb348a2b22a4a44071fe84bfcf2ebc3d.zip
Added note in JavaDoc of removeColumn (#11725)
* Added note in JavaDoc of removeColumn https://github.com/vaadin/framework/issues/11722 * Merge branch 'master' into fix11722 * Merge branch 'master' into fix11722
-rw-r--r--server/src/main/java/com/vaadin/ui/Grid.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/server/src/main/java/com/vaadin/ui/Grid.java b/server/src/main/java/com/vaadin/ui/Grid.java
index 104e90c3b9..6c154dc407 100644
--- a/server/src/main/java/com/vaadin/ui/Grid.java
+++ b/server/src/main/java/com/vaadin/ui/Grid.java
@@ -3040,6 +3040,9 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents,
/**
* Removes the given column from this {@link Grid}.
*
+ * Note: If you have Editor with binding in this Grid to this property, you need to remove that
+ * using removeBinding method provided by Binder.
+ *
* @param column
* the column to remove
*