identical validator
Check if the value is the same as one of given value
Options
Using with form field
(* denotes a required option)
Name | HTML attribute | Type | Description |
---|
compare * | data-fv-identical___compare | String or a function returns a string | The value that the field has to be different with |
message | data-fv-identical___message | String | The error message |
Using with ES6 module
import identical from 'formvalidation/dist/es6/validators/identical';
const result = identical().validate({
value: ...,
options: {
compare: ...,
message: ...,
},
});
Basic example
The following form requires the password and confirmation one to be the same using identical
validator.
See also