From 0a8079a9b87285d73f1d81f3b20d4f5492e4cc99 Mon Sep 17 00:00:00 2001 From: Ilia Motornyi Date: Thu, 4 May 2017 08:29:35 +0300 Subject: Fix three typos in the documentation (#9230) --- documentation/components/components-grid.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'documentation/components') 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 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); })); ---- -- cgit v1.2.3