Can we have default HTML required field validation alert box to UI-Select like the one in link given.. if so how?
Edit : my code is something like
<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>
with names as list of first-names and last-names of users.