diff options
author | xue <> | 2008-03-11 15:44:18 +0000 |
---|---|---|
committer | xue <> | 2008-03-11 15:44:18 +0000 |
commit | 571e32211bfe035eda916f288384d029c378fa4b (patch) | |
tree | e5541267731d1932d31afe626505abfd7c4661f1 | |
parent | 485c88300e852452421ac5686934b75252657636 (diff) |
Fixed #808.
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | framework/Web/Javascripts/source/prado/validator/validation3.js | 14 |
2 files changed, 4 insertions, 11 deletions
@@ -15,6 +15,7 @@ BUG: Ticket#787 - Typo in validation3.js (Christophe) BUG: Ticket#766, #786 - TDbCache does not work with MySQL and PostgreSQL (Qiang) BUG: Ticket#799 - Fixed several link errors in documentation about PDO (Qiang) BUG: Ticket#803 - TActiveRecord cannot be serialized/unserialized correctly. (Qiang) +BUG: Ticket#808 - Client side validation should work for file upload. (Qiang) BUG: Fixed a bug in TPropertyValue::ensureArray() (Qiang) CHG: Changed TConditional so that the controls in its template behave like they are in its parent (Qiang) CHG: Active Record many-to-many relationship change from self::HAS_MANY to self::MANY_TO_MANY (Wei) diff --git a/framework/Web/Javascripts/source/prado/validator/validation3.js b/framework/Web/Javascripts/source/prado/validator/validation3.js index 75681562..c7b23040 100644 --- a/framework/Web/Javascripts/source/prado/validator/validation3.js +++ b/framework/Web/Javascripts/source/prado/validator/validation3.js @@ -987,17 +987,9 @@ Prado.WebUI.TRequiredFieldValidator = Class.extend(Prado.WebUI.TBaseValidator, */
evaluateIsValid : function()
{
- var inputType = this.control.getAttribute("type");
- if(inputType == 'file')
- {
- return true;
- }
- else
- {
- var a = this.getValidationValue();
- var b = this.trim(this.options.InitialValue);
- return(a != b);
- }
+ var a = this.getValidationValue();
+ var b = this.trim(this.options.InitialValue);
+ return(a != b);
}
});
|