I want to add a class to the specific LI element of UI select through ng-class but i am not able to do so.
Example -
<ui-select ng-model="selected" theme="select2">
<ui-select-match placeholder="Select">{{$select.selected.name}}
</ui-select-match>
<ui-select-choices repeat="student in studentList | filter: $select.search" ng-class="{{student.name}} == 'ABC' ? 'found' : 'not_Found' "> {{student.name}}
</ui-select-choices>
</ui-select>
Please help me if anyone as any idea