<ul>
<li>The <tt>addContainerFilter()</tt> in <b>Container.Filterable</b> no longer accepts a filter string as a parameter, but a <b>Filter</b> object.</li>
+ <li><tt>DateField</tt>s no longer sets invalidAllowed(false) by default. The new behavior is consistent with all other fields in Vaadin and with DateField in Vaadin 6.3 and earlier.</li>
</ul>
<h3>Change Log, Future Releases, and Upgrading</h3>
* Constructs an empty <code>DateField</code> with no caption.
*/
public DateField() {
- setInvalidAllowed(false);
}
/**
*/
public DateField(String caption) {
setCaption(caption);
- setInvalidAllowed(false);
}
/**
* the Property to be edited with this editor.
*/
public DateField(Property dataSource) throws IllegalArgumentException {
- setInvalidAllowed(false);
if (!Date.class.isAssignableFrom(dataSource.getType())) {
throw new IllegalArgumentException("Can't use "
+ dataSource.getType().getName()
* the Date value.
*/
public DateField(String caption, Date value) {
- setInvalidAllowed(false);
setValue(value);
setCaption(caption);
}