Changeset 2067
- Timestamp:
- 07/24/2007 10:54:10 AM
- Files:
-
- trunk/HISTORY (modified) (1 diff)
- trunk/framework/Web/Javascripts/source/prado/validator/validation3.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/HISTORY
r2063 r2067 6 6 BUG: Ticket#666 - TActiveRecord::deleteAll() method always requires a criteria or null parameter (Qiang) 7 7 BUG: Ticket#670 - TDatePicker: Year Issue (Christophe) 8 BUG: Ticket#648 - Validation: onClick and onBlur events order (Christophe) 8 9 ENH: Ticket#667 - Added TFeedService.ContentType property (Qiang) 9 10 ENH: Ticket#577 - Added image button support for TPager (Qiang) trunk/framework/Web/Javascripts/source/prado/validator/validation3.js
r2028 r2067 626 626 if(this.message) 627 627 { 628 if(this.options.Display == "Dynamic") 629 this.isValid ? this.message.hide() : this.message.show(); 628 if(this.options.Display == "Dynamic") 629 { 630 var msg=this.message; 631 this.isValid ? setTimeout(function() { msg.hide(); }, 250) : msg.show(); 632 } 630 633 this.message.style.visibility = this.isValid ? "hidden" : "visible"; 631 634 }
