4

How can I insert a button inside the dropdown list in ui-select2? Tried to search but can't find any.


Sample image.

enter image description here

See ui-select2 documentation. https://github.com/angular-ui/ui-select

aldesabido
  • 1,268
  • 2
  • 17
  • 38

1 Answers1

0

You can do this instead

<div class="input-group">
   <--- ui-select here --!>                         
   <span class="input-group-btn">
        <a class="btn btn-default" href="" target="_blank"><i class="glyphicon glyphicon-plus"></i></a>
   </span>
 </div>
Mikebarson
  • 572
  • 7
  • 23