Updated JQuery validate plugin and added localizations
svn path=/trunk/; revision=24225
This commit is contained in:
12
scripts/jquery.validate-localization/methods_de.js
Normal file
12
scripts/jquery.validate-localization/methods_de.js
Normal file
@@ -0,0 +1,12 @@
|
||||
/*
|
||||
* Localized default methods for the jQuery validation plugin.
|
||||
* Locale: DE
|
||||
*/
|
||||
jQuery.extend(jQuery.validator.methods, {
|
||||
date: function(value, element) {
|
||||
return this.optional(element) || /^\d\d?\.\d\d?\.\d\d\d?\d?$/.test(value);
|
||||
},
|
||||
number: function(value, element) {
|
||||
return this.optional(element) || /^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test(value);
|
||||
}
|
||||
});
|
Reference in New Issue
Block a user