Revisions : jQuery validator
jQuery Validation Plugin
Les articles publiés sur le site
-
Additional : BIC : allow digits 1-9 in second place of location
28 janvier 2016, par stefanbAdditional: BIC: allow digits 1-9 in second place of location It seems that the BIC specification https://en.wikipedia.org/wiki/ISO_9362 was interpreted too strictly, only allowing digits 1 and 2 while those 2 just have a special meaning, but all 1-9 are allowed. Example: SSKNDE77XXX Sparkasse Nuernberg. Closes #1658.
-
Localisation : fixed Persian translation of min/max message.
28 janvier 2016, par EsiKhoobLocalisation: fixed Persian translation of min/max message. Closes #1673. Hello, and thank you for this good plugin I find a bug in Farsi (Persian) localization exist in messages_fa.js The "min"&"max" methods messages in that file have bug. The Farsi "min" `s message has this meaning: “please enter value greater that {0} words.” Phrase meaning "word" should be removed from Farsi message.
-
Core : Validation fails to trigger when next field is already filled out
18 janvier 2016, par ArkniCore: Validation fails to trigger when next field is already filled out This change fix the bug when used with remote rule, it's already fixed with other rules in commit 737630e7888485882c8c65b0f8ac5328950be0ac Ref #1508
-
Core : Required rule take precedence over number & digits rules
11 janvier 2016, par ArkniCore: Required rule take precedence over number & digits rules Ref #1611 Ref #1663 Fixes #1514
-
Build : fixed bad version constraints
10 janvier 2016, par staabmBuild: fixed bad version constraints `^0.4.0` Is equivalent to `0.4.*` but actually for a sementic versioned lib what we want is `>=0.4` aka `^0.4`