here's a dilemma :
(all in angular 1)
I'm using a ui-select like this :
https://i.stack.imgur.com/RzH2u.png
Here's the code snippet :
<div class="formZone-group">
<div class="mandatory-fl">
<div class="mandatory-field">
<label class="control-label">{{atlasManagement.getText("#ATLAS:ATTRIBUTE")}} <i class="glyphicon glyphicon-info-sign help-icon" aria-hidden="true" tooltip-placement="right" tooltip="{{atlasManagement.getText('#ATLAS:ATTRIBUTETOOLTIP')}}" tooltip-class="customTooltip" ng-show="atlasManagement.viewManager.isActiveView(atlasManagement.constants.views.addAtlas, atlasManagement.constants.views.updateAtlas)"></i></label>
</div>
<div class="mandatory" ng-show="atlasManagement.viewManager.isActiveView(atlasManagement.constants.views.addAtlas, atlasManagement.constants.views.updateAtlas)">*</div>
</div>
<div class="select-container">
<div class="selectPlaceHolder" ng-show="!atlasManagement.atlas.attributeIsDefined()">{{atlasManagement.getText('#ATLAS:CHOOSEATTRIBUTEPLACEHOLDER')}}</div>
<ui-select tagging tagging-label="false" on-select="atlasManagement.onAttributeSelected($item, $model)" ng-model="atlasManagement.atlas.attribute" theme="select2" ng-disabled="atlasManagement.viewManager.isActiveView(atlasManagement.constants.views.details)">
<ui-select-match>{{atlasManagement.getText($select.selected.title)}}</ui-select-match>
<ui-select-choices repeat="item in atlasManagement.attributes | orderBy: atlasManagement.orderByFactory('title') | propsFilter: { title : $select.search }:atlasManagement.getText | orderBy: atlasManagement.orderByFactory('title')">
<div ng-bind-html="atlasManagement.markText(atlasManagement.getText(item.title), $select.search)"></div>
</ui-select-choices>
</ui-select>
</div>
</div>
I need to remove the highlight when clicked...
Thank you in advance!