summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorBuild Agent <build@vaadin.com>2015-05-21 15:55:35 +0300
committerSauli Tähkäpää <sauli@vaadin.com>2015-07-03 13:29:17 +0300
commit9da3b4f1552ee065e2d2ed7f7d9b2ee8245e00c3 (patch)
tree9cd941f518067e0b6158ab082fb1e772e9fab7cc /README.md
parent5759ee06e8fbdc2caeb912d614ec5a42834d009d (diff)
downloadvaadin-core-9da3b4f1552ee065e2d2ed7f7d9b2ee8245e00c3.tar.gz
vaadin-core-9da3b4f1552ee065e2d2ed7f7d9b2ee8245e00c3.zip
Release version 0.3.0-rc1.0.3.0-snapshot
Diffstat (limited to 'README.md')
-rw-r--r--README.md201
1 files changed, 131 insertions, 70 deletions
diff --git a/README.md b/README.md
index d7dabce..6f28248 100644
--- a/README.md
+++ b/README.md
@@ -1,72 +1,133 @@
# Vaadin Components
-A set of high-quality Web Components built using Polymer.
-
-Learn more about [Vaadin Components.](https://vaadin.com/labs-components/)
-
-For contributions and issues, see the project's [Github Repository.](https://github.com/vaadin/components/)
-
-## Installation
-- Bower
-```shell
-$ bower install vaadin-components#0.3.0
-```
-```html
-<!-- Import web component polyfills and the component you want into your HTML -->
-<head>
- ...
- <script src="bower_components/webcomponentsjs/webcomponents-lite.js"></script>
- <link href="bower_components/vaadin-components/vaadin-grid/vaadin-grid.html" rel="import">
- ...
-</head>
-```
-- CDN
-```html
-<!-- Import web component polyfills and the component you want into your HTML -->
-<head>
- ...
- <script src="https://cdn.vaadin.com/vaadin-components/0.3.0/webcomponentsjs/webcomponents-lite.js"></script>
- <link href="https://cdn.vaadin.com/vaadin-components/0.3.0/vaadin-grid/vaadin-grid.html" rel="import">
- ...
-</head>
-```
-- Downloading the zip archive
- - Head over to https://vaadin.com/download#components
- - Download the version you wish to use
- - Extract the zip under your project folder
-```html
-<!-- Import web component polyfills and the component you want into your HTML -->
-<head>
- ...
- <script src="deps/vaadin-components/webcomponentsjs/webcomponents-lite.js"></script>
- <link href="deps/vaadin-components/vaadin-grid.html" rel="import">
- ...
-</head>
-```
-## Usage
-```html
-<!-- After adding the required imports, just add a <v-grid> into your HTML -->
-<v-grid>
- <table>
- <colgroup>
- <col header-text="Name">
- <col header-text="Value">
- <col header-text="Progress">
- </colgroup>
- <tbody>
- <tr>
- <td>Grid</td>
- <td>10000</td>
- <td>0.8</td>
- </tr>
- <tr>
- <td>Vaadin X</td>
- <td>999999</td>
- <td>0.8</td>
- </tr>
- </tbody>
- </table>
-</v-grid>
-```
-
-For more detailed examples on usage, see the [components-examples](https://tomivirkki.github.io/components-examples)
+Vaadin Components is an evolving set of custom HTML elements, built using [Polymer](https://www.polymer-project.org), for building mobile and desktop web applications in modern browsers.
+
+For contributions and issues, see the project&lsquo;s [Github repository](https://github.com/vaadin/components).
+
+### Examples &amp; API Docs
+
+View live examples and source code side-by-side for individual custom elements.
+
+- [&lt;**v-grid**&gt;](http://vaadin.github.io/components-examples/v-grid/) &ndash; Data grid for showing large amounts of tabular data ([API](http://vaadin.github.io/components-apidoc/#v-grid))
+
+
+### Quickstart
+
+ Get a quick test-drive of the custom elements by forking one of the following JSFiddles:
+
+- &lt;**v-grid**&gt;
+ - [Data generated on-the-fly](http://jsfiddle.net/jounik/tvk1235r/)
+ - [JSON data from a URL](http://jsfiddle.net/jounik/tLour4gv/)
+
+
+### Installation
+
+We offer three ways to use Vaadin Components in your project: Bower, CDN and ZIP archive. The only difference between the options is the URL you use to import the necessary files into your HTML page.
+
+#### 1. Create a new folder for your project
+
+ ```shell
+ $ mkdir my-project
+ $ cd my-project
+ ```
+
+#### 2. Install Vaadin Components
+
+- ##### Bower
+
+ We recommend using [Bower](http://bower.io) for managing your front-end dependencies. Follow the [Bower installation instructions](http://bower.io/#install-bower), then run the following command inside your project folder:
+
+ ```shell
+ $ bower install --save vaadin-components#0.3.0-beta3
+ ```
+
+ This will download Vaadin Components and its dependencies to the `bower_components` folder inside your project&lsquo;s folder.
+
+- ##### CDN
+
+ You can use Vaadin Components from CDN (see example below). This is especially convenient for services like JSFiddle, Codepen.io, etc.
+
+
+- ##### Download ZIP
+
+ 1. Download the latest ZIP archive from [vaadin.com/download](https://vaadin.com/download#components)
+ 2. Extract the archive under your project folder, for example `deps`
+
+#### 3. Create a HTML file
+
+ Create a new HTML file inside your project folder and copy the following code into it (choose one of the options how to import Vaadin Components in the `<head>` section):
+
+ > **Note on serving the files during development**, when using Bower or the ZIP archive:
+
+ > Due to browser security restrictions, serving HTML imports from a `file:///` URL does not work. You need a web server to view pages where you use custom elements. One simple option is to use the [`serve`](https://www.npmjs.com/package/serve) NPM package.
+
+ ```html
+<!doctype html>
+<html>
+ <head>
+ <!-- Import Web Component polyfills and the components that you want -->
+
+ <!-- CDN -->
+ <script src="https://cdn.vaadin.com/vaadin-components/0.3.0-beta3/webcomponentsjs/webcomponents-lite.js"></script>
+ <link href="https://cdn.vaadin.com/vaadin-components/0.3.0-beta3/vaadin-grid/vaadin-grid.html" rel="import">
+
+ <!-- Bower -->
+ <!-- <script src="bower_components/webcomponentsjs/webcomponents-lite.js"></script>
+ <link href="bower_components/vaadin-components/vaadin-grid/vaadin-grid.html" rel="import"> -->
+
+ <!-- ZIP archive -->
+ <!-- <script src="deps/vaadin-components/webcomponentsjs/webcomponents-lite.js"></script>
+ <link href="deps/vaadin-components/vaadin-grid/vaadin-grid.html" rel="import"> -->
+ </head>
+ <body>
+
+ <v-grid selection-mode="multi">
+ <table>
+ <!-- Define the columns -->
+ <col name="index" header-text="#" width="48">
+ <col name="user.picture.thumbnail" width="54">
+ <col name="user.name.first" header-text="First Name">
+ <col name="user.name.last" header-text="Last Name">
+ <col name="user.email" header-text="Email" flex>
+ </table>
+ </v-grid>
+
+ <script>
+ // The Web Components polyfill introduces a custom event we can
+ // use to determine when the custom elements are ready to be used
+ document.addEventListener("WebComponentsReady", function () {
+
+ // Reference to the grid element
+ var grid = document.querySelector("v-grid");
+
+ // Fetch some JSON data from a URL
+ var xhr = new XMLHttpRequest();
+ xhr.onreadystatechange = function() {
+ if (xhr.readyState == XMLHttpRequest.DONE) {
+ if (xhr.status == 200) {
+ var json = JSON.parse(xhr.responseText);
+
+ // Use the returned data array directly as the data source
+ // (keeping all the data source items in the browser's memory)
+ grid.data.source = json.results;
+ }
+ }
+ }
+ xhr.open("GET", "http://api.randomuser.me/?results=100", true);
+ xhr.send();
+
+ // Add a renderer for the index column
+ grid.columns[0].renderer = function(cell) {
+ cell.element.innerHTML = cell.row.index;
+ }
+
+ // Add a renderer for the picture column
+ grid.columns[1].renderer = function(cell) {
+ cell.element.innerHTML = '<img src="' + cell.data + '" style="width: 24px;">';
+ }
+ });
+ </script>
+
+ </body>
+</html>
+ ```