Validation
const email = new wire.bsInput().render("#email", {
...
validate: { type: "email", required: true, css: "is-invalid" }
});
...
const valid = email.validate();Last updated
Was this helpful?
const email = new wire.bsInput().render("#email", {
...
validate: { type: "email", required: true, css: "is-invalid" }
});
...
const valid = email.validate();Last updated
Was this helpful?
Was this helpful?