]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fix wrong method name in Grid docs (#10171)
authorPekka Hyvönen <pekka@vaadin.com>
Wed, 11 Oct 2017 11:40:51 +0000 (14:40 +0300)
committerTeemu Suo-Anttila <tsuoanttila@users.noreply.github.com>
Wed, 11 Oct 2017 11:40:51 +0000 (14:40 +0300)
documentation/components/components-grid.asciidoc

index b19a89cb26446382c03637e4b5d6e349edf47fd3..0af752287d95b77c537c826296b6f9af870b2137 100644 (file)
@@ -239,7 +239,7 @@ and column.
 
 [source, java]
 ----
-grid.addCellClickListener(event ->
+grid.addItemClickListener(event ->
     Notification.show("Value: " + event.getItem()));
 ----