...
Version | Description | Released On |
|---|---|---|
| 1.0 | Upgraded to Griffon 1.0.1 | July 12, 2012 |
| 0.9 | Updated to Griffon 0.9.5 with bug fixes | Apr 8, 2012 |
0.8.2 | Updated to Griffon 0.9.4 | Oct 30, 2011 |
0.8.1 | Fixed multi-error rendering issue | Sept 10, 2011 |
0.8 | Updated to Griffon 0.9.3 with RT support | August 19, 2011 |
0.7.1 | Bug fix minor release | May 13, 2011 |
0.7 | Introduced error renderer and widgets | May 04, 2011 |
0.6 | Updated to Griffon 0.9.2 | Feb 22, 2011 |
0.5 | Updated to Griffon 0.9 | Jul 20, 2010 |
...
| Code Block |
|---|
error.errorCode error.defaultErrorCode |
Currently due to an issue i18n-supoprt plugin does not load the default messages.properties file shipped with validation plugin therefore you will need to add the following message definition manually in your messages.properties file.
default.matches.message=Property [{0}] of class [{1}] with value [{2}] does not match the required pattern [{3}]
default.url.message=Property [{0}] of class [{1}] with value [{2}] is not a valid URL
default.creditCard.message=Property [{0}] of class [{1}] with value [{2}] is not a valid credit card number
default.email.message=Property [{0}] of class [{1}] with value [{2}] is not a valid e-mail address
default.range.message=Property [{0}] of class [{1}] with value [{2}] does not fall within the valid range
default.size.message=Property [{0}] of class [{1}] with value [{2}] does not fall within the valid size
default.max.message=Property [{0}] of class [{1}] with value [{2}] exceeds maximum value [{3}]
default.min.message=Property [{0}] of class [{1}] with value [{2}] is less than minimum value [{3}]
default.maxSize.message=Property [{0}] of class [{1}] with value [{2}] exceeds the maximum size of [{3}]
default.minSize.message=Property [{0}] of class [{1}] with value [{2}] is less than the minimum size of [{3}]
default.validator.message=Property [{0}] of class [{1}] with value [{2}] does not pass custom validation
default.inList.message=Property [{0}] of class [{1}] with value [{2}] is not contained within the list [{3}]
default.blank.message=Property [{0}] of class [{1}] cannot be blank
default.notEqual.message=Property [{0}] of class [{1}] with value [{2}] cannot equal [{3}]
default.nullable.message=Property [{0}] of class [{1}] cannot be null
Real Time Validation Support (since v0.8)
...