Hi Bertrand,
Thanks for contacting Syncfusion support,
We have analysed your query. We would like to inform you that, the validation occurs on every keyup events in jQuery. It is the default functionality of jQuery validation. We can add the validation for MaskEdit control, please refer the below code snippet
$("#maskedit").ejMaskEdit({
validationRules: { required: true },
validationMessage: { required: "Required value" },
inputMode: ej.InputMode.Text,
value: "4242422424",
maskFormat: "99 999-99999",
width: "100%"
}); |
Please let us know if you have any concerns
Regards
Karthik R