From: Pekka Hyvönen Date: Wed, 11 Oct 2017 11:40:51 +0000 (+0300) Subject: Fix wrong method name in Grid docs (#10171) X-Git-Tag: 8.2.0.alpha3~64 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=75ac029f5a8f18ff42ef33644876f063e9981031;p=vaadin-framework.git Fix wrong method name in Grid docs (#10171) --- diff --git a/documentation/components/components-grid.asciidoc b/documentation/components/components-grid.asciidoc index b19a89cb26..0af752287d 100644 --- a/documentation/components/components-grid.asciidoc +++ b/documentation/components/components-grid.asciidoc @@ -239,7 +239,7 @@ and column. [source, java] ---- -grid.addCellClickListener(event -> +grid.addItemClickListener(event -> Notification.show("Value: " + event.getItem())); ----