]> source.dussan.org Git - vaadin-core.git/commitdiff
Update README.md
authorJouni Koivuviita <jouni@jouni.me>
Thu, 3 Dec 2015 13:25:19 +0000 (15:25 +0200)
committerJouni Koivuviita <jouni@jouni.me>
Thu, 3 Dec 2015 13:25:19 +0000 (15:25 +0200)
Removed fiddle links, those are now only on the main marketing website (less maintenance overhead).

Added vaadin-combo-box to the list of elements.

Updated the tutorial code to reflect new header API in vaadin-grid 1.0.0-beta1

README.md

index 955e91357f32f788bfc5092b6e36ac568b5b5f31..83371aae302b34a6fde4c01bcd5826e5b3a55d98 100644 (file)
--- a/README.md
+++ b/README.md
@@ -4,23 +4,16 @@
 
 Vaadin Elements 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.
 
-### Component examples and documentation
+### Examples and Documentation
 
 View live examples and source code side-by-side for individual custom elements.
 
-| Component | Description |
-| --- | --- |
-| [<**vaadin-grid**>](https://github.com/vaadin/vaadin-grid) &middot; [Examples](https://cdn.vaadin.com/vaadin-elements/latest/vaadin-grid/demo/) &middot; [API](https://cdn.vaadin.com/vaadin-elements/latest/vaadin-elements/apidoc/#vaadin-grid) | Data grid for showing large amounts of tabular data. |
+| Element | Description | Status
+| --- | --- | --- |
+| [<**vaadin-grid**>](https://github.com/vaadin/vaadin-grid) &middot; [Examples](https://cdn.vaadin.com/vaadin-elements/latest/vaadin-grid/demo/) &middot; [API](https://cdn.vaadin.com/vaadin-elements/latest/vaadin-grid/) | Data grid for showing large amounts of tabular data. | Beta |
+| [<**vaadin-combo-box**>](https://github.com/vaadin/vaadin-combo-box) &middot; [Examples](https://cdn.vaadin.com/vaadin-elements/master/vaadin-combo-box/demo/) &middot; [API](https://cdn.vaadin.com/vaadin-elements/master/vaadin-combo-box/) | A filterable select element for a large set of items. | Alpha |
 
 
-### Quickstart
-
- Get a quick test-drive of the custom elements by forking one of the following JSFiddles:
-
-- &lt;**vaadin-grid**&gt;
- - [Data generated on-the-fly](http://jsfiddle.net/vaadin_elements/t2m5tonp/)
- - [JSON data from a URL](http://jsfiddle.net/vaadin_elements/bzn4b7ba/)
-
 ### Installation
 
 We offer three ways to use Vaadin Elements 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.
@@ -101,12 +94,23 @@ We offer three ways to use Vaadin Elements in your project: Bower, CDN and ZIP a
     <vaadin-grid selection-mode="multi">
       <table>
         <!-- Define the columns -->
-        <col name="index" header-text="#" width="48">
+        <col name="index" 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>
+        <col name="user.name.first">
+        <col name="user.name.last">
+        <col name="user.email" flex>
       </table>
+      
+      <!-- Define custom column headers -->
+      <thead>
+       <tr>
+         <th>#</th>
+         <th></th>
+         <th>First Name</th>
+         <th>Last Name</th>
+         <th>Email</th>
+       </tr>
+      </thead>
     </vaadin-grid>
 
     <script>