List of usage examples for com.vaadin.v7.ui DateField DateField
public DateField(Property dataSource) throws IllegalArgumentException
DateField that's bound to the specified Property and has no caption. From source file:de.symeda.sormas.ui.statistics.StatisticsFilterDateRangeElement.java
License:Open Source License
public StatisticsFilterDateRangeElement() { setSpacing(true);//from www .jav a 2 s. co m dateFromField = new DateField(I18nProperties.getCaption(Captions.from)); dateToField = new DateField(I18nProperties.getCaption(Captions.to)); addComponent(dateFromField); addComponent(dateToField); }