I checked it in SmartClient_SC_SNAPSHOT-2010-11-29.
File: Validators.js, function: isTime
should be
File: Validators.js, function: isTime
Code:
// support being passed a full datetime string as well
if (dateValue == null) {
dateValue = Date.parseSchemaDate(dateValue);
}
Code:
// support being passed a full datetime string as well
if (dateValue == null) {
dateValue = Date.parseSchemaDate(value);
}
Comment