Getting Started

core.validator.disabled event

Triggered when a particular validator is disabled
The event object contains the following properties:
Property Type Description
elements HTMLElement[] The field elements
field String The field name
formValidation Core The FormValidation instance
validator String The validator name
Using in the browser
            
const fv = FormValidation . formValidation (
document . getElementById ( 'demoForm' ) ,
{
...
}
) ;
fv . on ( 'core.validator.disabled' , function ( event ) {
...
} ) ;
Using with ES6 module
            
import formValidation from 'formvalidation/dist/es6/core/Core' ;
const fv = formValidation (
document . getElementById ( 'demoForm' ) ,
{
...
}
) ;
fv . on ( 'core.validator.disabled' , function ( event ) {
...
} ) ;

See also