aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJouni Koivuviita <jouni@jouni.me>2015-12-03 15:32:14 +0200
committerJouni Koivuviita <jouni@jouni.me>2015-12-03 15:32:14 +0200
commit8fc9bd97eddf6480516284f2af3670471dbdac7c (patch)
tree33f6c9979adc9f5480797fffe570a66339413e4a
parent9eb68eef83a3c5240e72d2b7e8f70123d1dee6ff (diff)
downloadvaadin-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.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/README.md b/README.md
index 7d5b16d..544decb 100644
--- a/README.md
+++ b/README.md
@@ -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");