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-03 09:38:20 +0300
commit9381cf270132563f2ec7a05277211e0a64a16832 (patch)
treefff443a74623fd992bd32c6e2aeded15d52f9b1e
parent52c22bdba3edfd5c4bd13f07bcec5156a8a29b81 (diff)
downloadvaadin-framework-9381cf270132563f2ec7a05277211e0a64a16832.tar.gz
vaadin-framework-9381cf270132563f2ec7a05277211e0a64a16832.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
*