]> source.dussan.org Git - vaadin-framework.git/commitdiff
#6407 Removed setInvalidAllowed(false) from DateField to be consistent with other...
authorArtur Signell <artur.signell@itmill.com>
Tue, 26 Apr 2011 16:10:38 +0000 (16:10 +0000)
committerArtur Signell <artur.signell@itmill.com>
Tue, 26 Apr 2011 16:10:38 +0000 (16:10 +0000)
svn changeset:18480/svn branch:6.6

WebContent/release-notes.html
src/com/vaadin/ui/DateField.java

index d3b215f6d865168e2b7521f687856a6ebcb83c89..de1f99f3a20eaa62bca8e9a8ddddcfc819710468 100644 (file)
@@ -72,6 +72,7 @@ contains a number of significant enhancements.</p>
 
 <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>
index c153bcc15a6810d933f0ab2bafa2cba2261de707..eee26555f73bbee5879ae71113397497e3b0e873 100644 (file)
@@ -132,7 +132,6 @@ public class DateField extends AbstractField implements
      * Constructs an empty <code>DateField</code> with no caption.
      */
     public DateField() {
-        setInvalidAllowed(false);
     }
 
     /**
@@ -143,7 +142,6 @@ public class DateField extends AbstractField implements
      */
     public DateField(String caption) {
         setCaption(caption);
-        setInvalidAllowed(false);
     }
 
     /**
@@ -168,7 +166,6 @@ public class DateField extends AbstractField implements
      *            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()
@@ -191,7 +188,6 @@ public class DateField extends AbstractField implements
      *            the Date value.
      */
     public DateField(String caption, Date value) {
-        setInvalidAllowed(false);
         setValue(value);
         setCaption(caption);
     }