diff options
author | Michael Benz <michael.benz@foconis.de> | 2017-03-14 15:19:35 +0100 |
---|---|---|
committer | Teemu Suo-Anttila <tsuoanttila@users.noreply.github.com> | 2017-03-16 16:21:24 +0200 |
commit | dfe2a441a49547efe1e6fcfb5875a9c30a5f0ee3 (patch) | |
tree | e02153fe80a6d18066dff7f0eca38608f0d8b957 | |
parent | a5a95273c92bdc2d69d2a84de36b53085bb5798b (diff) | |
download | vaadin-framework-dfe2a441a49547efe1e6fcfb5875a9c30a5f0ee3.tar.gz vaadin-framework-dfe2a441a49547efe1e6fcfb5875a9c30a5f0ee3.zip |
components-grid to use correct function setHidable (#8843)
* components-grid to use correct function setHidable
The correct function to use in Vaadin 8 (also before) is setHidable()
https://vaadin.com/api/8.0.0/com/vaadin/ui/Grid.Column.html#setHidable-boolean-
For 7.7.7:
https://vaadin.com/api/7.7.7/com/vaadin/ui/Grid.Column.html#setHidable-boolean-
-rw-r--r-- | documentation/components/components-grid.asciidoc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/components/components-grid.asciidoc b/documentation/components/components-grid.asciidoc index 957a9a7fb4..e35f2b0aac 100644 --- a/documentation/components/components-grid.asciidoc +++ b/documentation/components/components-grid.asciidoc @@ -310,8 +310,8 @@ the [methodname]#removeColumn()#, as described later. === Hiding and Removing Columns Columns can be hidden by calling [methodname]#setHidden()# in [classname]#Column#. -Furthermore, you can set the columns user hideable using method -[methodname]#setHideable()#. +Furthermore, you can set the columns user hidable using method +[methodname]#setHidable()#. Columns can be removed with [methodname]#removeColumn()# and [methodname]#removeAllColumns()#. To restore a previously removed column, |