2017-04-19 12 views
0

私は角JSでfoloowingライブラリを使用します。電子メールの種類に自動補完入力を検証する方法angucomplete-altの入力メールを検証するにはどうすればよいですか?

https://github.com/ghiden/angucomplete-alt

を?無効であればエラーを表示しますか?

私はfield-required="true"を使用しようとしましたが、IDがメールに検証しません。のようなスタイルから属性へ

<angucomplete-alt 
           placeholder="<%= t('projects.project_full.invitation.enter_email_title') %>" 
           pause="100" 
           id="ex8b" 
           selected-object="selectedInvitationUsers" 
           local-data="invitable_users" 
           search-fields="fullname,email" 
           title-field="fullname,email" 
           minlength="1" 
           input-name="invite.email" 
           override-suggestions="true" 
           input-changed="inputChangeHandler" 
           field-required="true" 
           input-class="form-control form-control-small"/> 
         </div> 
+0

をフォーム内にそれをラップしましたか? https://ghiden.github.io/angucomplete-alt/#example8 – agriboz

+0

はい、私はそれをラップしました – Daniel

答えて

1

Change要素ディレクティブ:

<div angucomplete-alt 
           placeholder="<%= t('projects.project_full.invitation.enter_email_title') %>" 
           pause="100" 
           id="ex8b" 
           selected-object="selectedInvitationUsers" 
           local-data="invitable_users" 
           search-fields="fullname,email" 
           title-field="fullname,email" 
           minlength="1" 
           input-name="invite.email" 
           override-suggestions="true" 
           input-changed="inputChangeHandler" 
           field-required="true" 
           input-class="form-control form-control-small"/> 
         </div> 
関連する問題