Revisions : jQuery validator

jQuery Validation Plugin

http://github.com/jzaefferer/jquery-validation

Les articles publiés sur le site

  • Core : Use :disabled selector to match disabled elements

    12 mai 2015, par weitzhandler
    Core: Use :disabled selector to match disabled elements
    
    This also applies to elements that are inside a fieldset with a disabled
    attribute, causing an inherited disabled state. Only matching the disabled
    attribute directly won't capture that.
    
    Closes #1474
  • Localization : Improve Finnish (fi) translation

    12 mai 2015, par Pietu1998
    Localization: Improve Finnish (fi) translation
    
    The current Finnish translations are partially wrong and partially
    clumsy. This change should improve them. Finnish is really a hard
    language to equivalently and clearly translate some strings to.
    
    Closes #1475
  • Core : Exclude some keyboard keys to prevent revalidating the field

    24 février 2015, par Arkni
    Core: Exclude some keyboard keys to prevent revalidating the field
    
    Avoid revalidate the field when pressing one of the following keys
     in 'onkeyup' method:
    	Shift       => 16
    	Alt         => 18
    	Caps lock   => 20
    	End         => 35
    	Home        => 36
    	Left arrow  => 37
    	Up arrow    => 38
    	Right arrow => 39
    	Down arrow  => 40
    	Insert      => 45
    	Num lock    => 144
    	AltGr key   => 225
    
    This helps especially with the remote method, which has a lot of
    overhead.
    
    Closes #1411
  • Tests : Update to QUnit 1.17.1

    17 février 2015, par jzaefferer
    Tests: Update to QUnit 1.17.1
  • Core : Do not search the whole DOM for radio/checkbox elements

    17 février 2015, par staabm
    Core: Do not search the whole DOM for radio/checkbox elements
    
    Fixes #1056
    Closes #1064