Bug Tracker

Show
Ignore:
Timestamp:
12/06/07 15:36:17 (1 year ago)
Author:
joern.zaefferer
Message:

* Added valid() plugin method for easy programmatic checking of forms and fields without the need to use the validator API
* Replaced regex for URL method, thanks to the contribution by Scott Gonzales, see http://www.scottsplayground.com/temp/iri/common.htm
* Fixed validate() plugin method to create only one validator instance for a given form and always return that one instance (avoids binding events multiple times)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/plugins/validate/changelog.txt

    r3948 r4040  
    99* Added support for ajax-validation, see method "remote" 
    1010* Added highlight and unhighlight options, by default toggles errorClass on element, allows custom highlighting 
     11* Added valid() plugin method for easy programmatic checking of forms and fields without the need to use the validator API 
     12* Replaced regex for URL method, thanks to the contribution by Scott Gonzales, see http://www.scottsplayground.com/temp/iri/common.htm 
    1113* Fixed error container to hide when all elements are valid, not only on form submit 
    1214* Fixed String.format to jQuery.format (moving into jQuery namespace) 
    13 * Improved URL and email methods (now blacklisting illegal characters to make them much more versatile when dealing with unicode characters, like http://www.føtex.dk/ 
     15* Improved email method to better handle unicode characters 
    1416* Fixed accept method to accept both upper and lowercase extensions 
    15 * Changed debug-mode console log to warn level 
     17* Changed debug-mode console log from "error" to "warn" level 
     18* Fixed validate() plugin method to create only one validator instance for a given form and always return that one instance (avoids binding events multiple times) 
    1619 
    17201.1.1