diff options
author | Ilia Motornyi <elmot@vaadin.com> | 2017-05-04 08:29:35 +0300 |
---|---|---|
committer | Henri Sara <henri.sara@gmail.com> | 2017-05-04 08:29:35 +0300 |
commit | 0a8079a9b87285d73f1d81f3b20d4f5492e4cc99 (patch) | |
tree | 1a97089a80b3c53d58e1cf594a8d161cb42ea1b6 /documentation/components | |
parent | 3a7e95b98af0e9ad8f1d0160f6a1adcaa6cd8c58 (diff) | |
download | vaadin-framework-0a8079a9b87285d73f1d81f3b20d4f5492e4cc99.tar.gz vaadin-framework-0a8079a9b87285d73f1d81f3b20d4f5492e4cc99.zip |
Fix three typos in the documentation (#9230)
Diffstat (limited to 'documentation/components')
-rw-r--r-- | documentation/components/components-grid.asciidoc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/components/components-grid.asciidoc b/documentation/components/components-grid.asciidoc index 8ecbe85c72..1195a1c79a 100644 --- a/documentation/components/components-grid.asciidoc +++ b/documentation/components/components-grid.asciidoc @@ -448,7 +448,7 @@ Grid<Person> grid = new Grid<>(people); // Render a button that deletes the data row (item) grid.addColumn(person -> "Delete", new ButtonRenderer(clickEvent -> { - people.remove(clickEvent.getValue()); + people.remove(clickEvent.getItem()); grid.setItems(people); })); ---- |