0

指定されたリンクのように、デフォルトの HTML 必須フィールド検証アラート ボックスを UI-Select にすることはできますか?

https://www.google.co.in/imgres?imgurl=http://i.stack.imgur.com/R3h1L.png&imgrefurl=https://stackoverflow.com/questions/18770369/how-to-set- html5-required-attribute-in-javascript&h=178&w=675&tbnid=j8M7AwOECpa80M:&docid=NL_CUnsolMwYCM&ei=HICwVtbjJouyuASina_4Dg&tbm=isch

編集:私のコードは次のようなものです

<ui-select ng-model="selectedName" name="nameSelect" required>
   <ui-select-match allow-clear="true" placeholder="Select a value">
   {{$select.selected.firstname + ' ' +$select.selected.lastname }}
   </ui-select-match>
   <ui-select-choices repeat="name in names | propsFilter: {firstname: $select.search, lastname: $select.search}" >
       <div ng-bind-html="name.firstname +  ' '+name.lastname   | highlight: $select.search">
       </div>
  </ui-select-choices>
</ui-select>

ユーザーの名前と姓のリストとして名前を付けます。

4

0 に答える 0