blob: dbd3aa503764181886db597079612b09efdc84c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
if(!dojo._hasResource["dojox.validate.ca"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
dojo._hasResource["dojox.validate.ca"] = true;
dojo.provide("dojox.validate.ca");
dojo.require("dojox.validate._base");
dojox.validate.ca.isPhoneNumber = function(/* String */value) {
// summary: Validates 10 Canadian digit phone number for several common formats
// returns: Boolean
return dojox.validate.us.isPhoneNumber(value); // same as US
};
dojox.validate.ca.isProvince = function(/* String[2] */value) {
// summary: Validates Canadian province abbreviations (2 chars)
// returns: Boolean
var re = new RegExp("^" + dojox.regexp.ca.province() + "$", "i");
return re.test(value);
};
dojox.validate.ca.isSocialInsuranceNumber = function(/* String */value) {
// summary: Validates Canadian 9 digit social insurance number for several common formats
// This routine only pattern matches and does not use the Luhn Algorithm to validate number.
// returns: Boolean
var flags = {
format: [
"###-###-###",
"### ### ###",
"#########"
]
};
return dojox.validate.isNumberFormat(value, flags);
};
dojox.validate.ca.isPostalCode = function(value) {
// summary: Validates Canadian 6 digit postal code:
// Canadian postal codes are in the format ANA NAN,
// where A is a letter and N is a digit, with a space
// separating the third and fourth characters.
// returns: Boolean
var re = new RegExp("^" + dojox.regexp.ca.postalCode() + "$", "i");
return re.test(value);
};
}
|