Merge pull request #1495 from johnnyreilly/master

jQuery.validation: Gave definition to errorMap
This commit is contained in:
John Reilly
2014-01-02 09:03:58 -08:00
2 changed files with 9 additions and 4 deletions
+2 -2
View File
@@ -111,7 +111,7 @@ function test_validate() {
submitHandler: function () { alert("Submitted!") }
});
$(".selector").validate({
showErrors: function (errorMap, errorList) {
showErrors: function (errorMap: ErrorDictionary, errorList: ErrorListItem[]) {
$("#summary").html("Your form contains " + this.numberOfInvalids() + " errors, see details below.");
this.defaultShowErrors();
}
@@ -193,7 +193,7 @@ function test_methods() {
validator.hideErrors();
var isValid: boolean = validator.valid();
var size: number = validator.size();
var errorMap: Object = validator.errorMap;
var errorMap: ErrorDictionary = validator.errorMap;
var errorList: ErrorListItem[] = validator.errorList;
$("#summary").text(validator.numberOfInvalids() + " field(s) are invalid");
+7 -2
View File
@@ -28,7 +28,7 @@ interface ValidationOptions
onkeyup?: boolean;
onsubmit?: boolean;
rules?: Object;
showErrors?: (errorMap: Object, errorList: ErrorListItem[]) => void;
showErrors?: (errorMap: ErrorDictionary, errorList: ErrorListItem[]) => void;
submitHandler?: (form: HTMLFormElement) => void;
success?: any;
unhighlight?: (element: HTMLElement, errorClass: string, validClass: string) => void;
@@ -36,6 +36,11 @@ interface ValidationOptions
wrapper?: string;
}
interface ErrorDictionary
{
[name: string]: string;
}
interface ErrorListItem
{
message: string;
@@ -59,7 +64,7 @@ interface Validator
valid(): boolean;
size(): number;
errorMap: Object;
errorMap: ErrorDictionary;
errorList: ErrorListItem[];
}