Hi,
I have set a few date fields in my form, with the mm/dd/yyyy format. The validation works most of the time. However, if I type "12/12/199T" in one of these, the validation does not work and on blur the field's value becomes "12/12/0199". Is this a bug?
Thanks.
Date strings are not number they are character strings of number characters. The bug is that the 'T' is dropped and the year is assumed to be '0199'. Without seeing the underlying code it is hard tell what is happening. I do know that date fields accept a date formatted in the UTC format that does not have an exact date, so one can enter only the year or year and month.
George Kaiser