resetField() method
Reset the field
This method also clears all the messages, hide the feedback icons, etc.
resetField(field: String, reset: Boolean): Core
(* denotes a required parameter)
Parameter | Type | Description |
---|
field * | String | The field name |
reset | Boolean | If true , the method resets field value to empty or remove checked , selected attributes |
Using the global script in the browser
const fv = FormValidation.formValidation(
document.getElementById('demoForm'),
{
...
}
);
fv.resetField(...);
Using the ES6 module
import { formValidation } from '/path/to/@form-validation/cjs/bundle/popular';
const fv = formValidation(
document.getElementById('demoForm'),
{
...
}
);
fv.resetField(...);
Using the npm package
import { formValidation } from '@form-validation/bundle/popular';
const fv = formValidation(
document.getElementById('demoForm'),
{
...
}
);
fv.resetField(...);
See also