Bug Tracker

Show
Ignore:
Timestamp:
06/09/08 21:38:29 (7 months ago)
Author:
joern.zaefferer
Message:

validation: * Removed deprecated methods minValue (min), maxValue (max), rangeValue (rangevalue), minLength (minlength), maxLength (maxlength), rangeLength (rangelength)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/plugins/validate/demo/index.html

    r5579 r5721  
    3131            password: { 
    3232                required: true, 
    33                 minLength: 5 
     33                minlength: 5 
    3434            }, 
    3535            confirm_password: { 
     
    4444            topic: { 
    4545                required: "#newsletter:checked", 
    46                 minLength: 2 
     46                minlength: 2 
    4747            }, 
    4848            agree: "required" 
     
    5353            username: { 
    5454                required: "Please enter a username", 
    55                 minLength: "Your username must consist of at least 2 characters" 
     55                minlength: "Your username must consist of at least 2 characters" 
    5656            }, 
    5757            password: { 
    5858                required: "Please provide a password", 
    59                 minLength: "Your password must be at least 5 characters long" 
     59                minlength: "Your password must be at least 5 characters long" 
    6060            }, 
    6161            confirm_password: { 
    6262                required: "Please provide a password", 
    63                 minLength: "Your password must be at least 5 characters long", 
     63                minlength: "Your password must be at least 5 characters long", 
    6464                equalTo: "Please enter the same password as above" 
    6565            },