diff options
author | Jouni Koivuviita <jouni@jouni.me> | 2015-12-03 15:32:14 +0200 |
---|---|---|
committer | Jouni Koivuviita <jouni@jouni.me> | 2015-12-03 15:32:14 +0200 |
commit | 8fc9bd97eddf6480516284f2af3670471dbdac7c (patch) | |
tree | 33f6c9979adc9f5480797fffe570a66339413e4a | |
parent | 9eb68eef83a3c5240e72d2b7e8f70123d1dee6ff (diff) | |
download | vaadin-core-8fc9bd97eddf6480516284f2af3670471dbdac7c.tar.gz vaadin-core-8fc9bd97eddf6480516284f2af3670471dbdac7c.zip |
Update README.md
Added some more comments to the example to illustrate that there are more elements to use than just vaadin-grid.
-rw-r--r-- | README.md | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -91,6 +91,7 @@ We offer three ways to use Vaadin Elements in your project: Bower, CDN and ZIP a </head> <body> + <!-- Use the elements, for instance vaadin-grid --> <vaadin-grid selection-mode="multi"> <table> <!-- Define the columns --> @@ -118,6 +119,8 @@ We offer three ways to use Vaadin Elements in your project: Bower, CDN and ZIP a // use to determine when the custom elements are ready to be used document.addEventListener("WebComponentsReady", function () { + // Configure vaadin-grid to show data + // Reference to the grid element var grid = document.querySelector("vaadin-grid"); |