I would like to validate the email addresses with input html kendo. This is my html code:
<label for="doc" class="required">E-mail</label>
<input type="email" multiple pattern="^([\w+-.%]+@[\w-.]+\.[A-Za-z]{2,4},*[\W]*)+$" value="" data-bind="value: mail" id="doc" name="mail" required data-email-msg="Email format is not valid" />
I would like the addresses to be separated by a comma, but this doesn't work!is not validate for kendo
Here is working DEMO to validate multiple emails in a single input field separated by semicolon.
For this I have created a custom Kendo validator rule. The code snippet from the DEMO is show below:
HTML:
JS: