Changeset 1026
- Timestamp:
- 2009-02-04 15:13:13 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/kauri-forms/kauri-forms-framework/src/main/kauri/static/js/validator.js
r1008 r1026 41 41 * 42 42 * @property {Object} value the value to be tested 43 * @property {Object} validationData extra object holding various elements useful during validation: 44 * <ul><li>index: seqnr. 0 based (when in multivalue field)</li> 45 * <li>type: ref to the field-type</li> 46 * <li>multivalue: boolean</li></ul> 43 47 * @property {Object} listener call-back function (signature(result_boolean, [message]) for async checks 44 48 * @return void … … 46 50 * when the validation fails. 47 51 */ 48 Validator.prototype.validate = function( value ) {52 Validator.prototype.validate = function( value, validationData) { 49 53 50 54 return this.notifySuccess();
Note: See TracChangeset
for help on using the changeset viewer.