diff options
author | wei <> | 2006-08-05 00:38:30 +0000 |
---|---|---|
committer | wei <> | 2006-08-05 00:38:30 +0000 |
commit | 93c4193f4a3c315c7785bf5f9f522c955ef6fce7 (patch) | |
tree | 6166ca58b6a947a0e6fa3cbc9cd728650fc57221 /framework/Web/Javascripts/js/validator.js | |
parent | a9bdf9fde29c5bf71d3a402fc15806ca8923aea8 (diff) |
Fixed #274
Diffstat (limited to 'framework/Web/Javascripts/js/validator.js')
-rw-r--r-- | framework/Web/Javascripts/js/validator.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/framework/Web/Javascripts/js/validator.js b/framework/Web/Javascripts/js/validator.js index ee578ea2..0e39d191 100644 --- a/framework/Web/Javascripts/js/validator.js +++ b/framework/Web/Javascripts/js/validator.js @@ -125,7 +125,11 @@ return value;},getValidationValue:function(control) control=this.control switch(this.options.ControlType) {case'TDatePicker':if(control.type=="text") -return this.trim($F(control));else +{value=this.trim($F(control));if(this.options.DateFormat) +{date=value.toDate(this.options.DateFormat);return date==null?'':date;} +else +return value;} +else {this.observeDatePickerChanges();return Prado.WebUI.TDatePicker.getDropDownDate(control).getTime();} case'THtmlArea':if(typeof tinyMCE!="undefined") tinyMCE.triggerSave();return this.trim($F(control));case'TRadioButton':if(this.options.GroupName) |