指定されたリンクのように、デフォルトの HTML 必須フィールド検証アラート ボックスを UI-Select にすることはできますか?
編集:私のコードは次のようなものです
<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>
ユーザーの名前と姓のリストとして名前を付けます。