Skip to content

Latest commit

 

History

History
41 lines (29 loc) · 973 Bytes

README.md

File metadata and controls

41 lines (29 loc) · 973 Bytes

vaadin-tuning-datefield

A DateField Add-On for Vaadin which can be tuned.

This basically will display a TextBox and a calenar toggle button using the Vaadin built-in stylenames.

The model used for the value is a Joda LocalDate. Thus there is a transitive dependency to Joda Time 2.1

Installation

Add the project dependency :

Maven :

<dependency>
    <groupId>org.vaadin.addons</groupId>
    <artifactId>tuning-datefield</artifactId>
    <version>${tuning-datefield.version}</version>
</dependency>

Ivy :

	<dependency org="org.vaadin.addons" name="tuning-datefield"
			rev="&tuning-datefield.version;" />

Inherit the module in your gwt.xml widgetset file

<module>

	....
	
	<inherits
		name="org.vaadin.addons.tuningdatefield.widgetset.TuningDateFieldWidgetset" />

</module>