The vaadin-grid element is a free, flexible and high-quality
Web Component for showing large amounts of tabular data. It is also a part of
the vaadin-core-elements
element bundle. See a detailed list of features on
the vaadin-grid page.
The following chapters will guide you through the usage of vaadin-grid with code examples.
To install vaadin-grid to your project, you have three options. The recommended way
is to use Bower.
Recommended way for installation is to use the Bower package manager. After creating a folder for your project, you can install the element (with all required dependencies) with the following command.
$ bower install --save vaadin-grid
Then use a normal HTML import to make the element available on your page.
<link rel="import" href="bower_components/vaadin-grid/vaadin-grid.html">
You can also import the element without a local installation by using our CDN infrastructure.
<link rel="import" href="https://cdn.vaadin.com/vaadin-core-elements/latest/vaadin-grid/vaadin-grid.html">
As a third option, you can also download the required files locally by downloading the latest Vaadin Core Elements bundle as a zip package.
<link rel="import" href="libs/vaadin-grid/vaadin-grid.html">
Some features found in the Grid component of Vaadin Framework like row editor, column resizing and column reordering are not yet supported.
The vaadin-grid element is licensed under the
Apache License 2.0. The
source code is available on the GitHub project page.