Changeset 2067

Show
Ignore:
Timestamp:
07/24/2007 10:54:10 AM
Author:
tof
Message:

Fixed #648

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/HISTORY

    r2063 r2067  
    66BUG: Ticket#666 - TActiveRecord::deleteAll() method always requires a criteria or null parameter (Qiang) 
    77BUG: Ticket#670 - TDatePicker: Year Issue (Christophe) 
     8BUG: Ticket#648 - Validation: onClick and onBlur events order (Christophe) 
    89ENH: Ticket#667 - Added TFeedService.ContentType property (Qiang) 
    910ENH: Ticket#577 - Added image button support for TPager (Qiang) 
  • trunk/framework/Web/Javascripts/source/prado/validator/validation3.js

    r2028 r2067  
    626626                if(this.message) 
    627627                { 
    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                        } 
    630633                        this.message.style.visibility = this.isValid ? "hidden" : "visible"; 
    631634                }