updateValidatorOption() method

Update option of particular validator for given field
updateValidatorOption(
field: String,
validator: String,
name: String,
value: Any
): Core
(* denotes a required parameter)
ParameterTypeDescription
field*StringThe field name
validator*StringThe validator name
name*StringThe option's name
value*AnyThe option's value
Using the global script in the browser
const fv = FormValidation.formValidation(
document.getElementById('demoForm'),
{
...
}
);
fv.updateValidatorOption(...);
Using the ES6 module
import { formValidation } from '/path/to/@form-validation/cjs/bundle/popular';
const fv = formValidation(
document.getElementById('demoForm'),
{
...
}
);
fv.updateValidatorOption(...);
Using the npm package
import { formValidation } from '@form-validation/bundle/popular';
const fv = formValidation(
document.getElementById('demoForm'),
{
...
}
);
fv.updateValidatorOption(...);

See also