Skip to content

Releases: vaadin-miki/super-template

0.2.1 - Grid<MyBean> columns in design file

05 May 12:28
d81249f
Compare
Choose a tag to compare

Recommended way to add columns to a vaadin-grid element is to add a custom attribute data-columns and then provide a space-separated list of property names, for example:

<vaadin-grid data-columns="property anotherProperty someOtherProperty"></vaadin-grid>

Those properties will be called with server-side Grid.addColumn(propertyName).

0.2 - Grid<MyBean> now supported

05 May 10:16
863c36d
Compare
Choose a tag to compare
Pre-release

In addition to string-based properties there is an extra configurator that makes sure Grid<MyBean> gets MyBean.class (so that grid.addColumn("property") can be used).

0.1 - Initial

20 Apr 20:41
714d63e
Compare
Choose a tag to compare
0.1 - Initial Pre-release
Pre-release

Experimental release. Works, but with known limitations.