angular-ui / bootstrap

PLEASE READ THE PROJECT STATUS BELOW. Native AngularJS (Angular) directives for Bootstrap. Smaller footprint (20kB gzipped), no 3rd party JS dependencies (jQuery, bootstrap JS) required. Please read the README.md file before submitting an issue!
http://angular-ui.github.io/bootstrap/
MIT License
14.29k stars 6.73k forks source link

Tool tip is not working inside select options #6475

Open gladsonrobinson opened 7 years ago

gladsonrobinson commented 7 years ago

I need a tooltip to be displayed for each options in the select box

 <select ng-model="rightList" class="form-control" size="13" multiple>
            <option 
                ng-repeat="item in selectedList" 
                value="{{$index}}" 
                uib-tooltip="See? Now click away..."
                tooltip-placement="right">
                {{item.name}}
            </option>
  </select>

Any help on this please.

WVWillHall commented 7 years ago

select elements don't allow none-select-related html :)

Try

tooltip-append-to-body="true"