Canadian postal codes follow the A9A 9A9 format.
In my display validation pattern, I have text{A9A 9A9}
In my edit validation pattern, I have text{A9A 9A9}|text{A9A9A9}
In my validation pattern, I have text{A9A 9A9}
I also have a JavaScript validation running client side.
It reads:
form1.#subform[0].Section1.PostalCode::validate - (JavaScript, client)
this.rawValue = this.rawValue.toUpperCase();
Given these paramaters, I am stumped as to why I keep getting the following validation error: "The value you entered for Postal Code in valid."
Any thoughts?