Revisions : jQuery validator
jQuery Validation Plugin
Les articles publiés sur le site
-
Demo : use `.on()` instead of `.validateDelegate()`
22 juillet 2016, par ArkniDemo: use `.on()` instead of `.validateDelegate()` `validateDelegate()` has been removed in `v1.14.0` and replaced with `.on(...)` which is only available in `jQuery 1.7+`
-
Core : Added failing test for #1805. Patch by @Arkni.
22 juillet 2016, par staabmCore: Added failing test for #1805. Patch by @Arkni.
-
Core : Fix group validation with 3 and more fields
22 juillet 2016, par TLibCore: Fix group validation with 3 and more fields If a previous element is already invalid, the the check of the current element is never done and the current element becomes always valid. Closes #1816, #1805.
-
Core : Fix regressions introduced in #1644 and #1657. Closes #1800.
15 juillet 2016, par ArkniCore: Fix regressions introduced in #1644 and #1657. Closes #1800. As of now the signature of `validator.defaultMessage( element, string )` is deprecated. Use `validator.defaultMessage( element, object )` instead where objet is defined as ``` object = { method: "method name", parameters: "the given method parameters" } ```
-
Tests : Added regression unit tests for PR #1760
15 juillet 2016, par tbjersTests: Added regression unit tests for PR #1760 Testing small fraction steps to ensure correct modulo operation. Cleaned up @adhayward's formatting, was using spaces instead of tabs.