javascript - how to remove unwanted box in ui-select? -


using angular , multi ui-select, select box shows unwanted "extra" box (see picture). how can remove this?

enter image description here code:

      <ui-select multiple ng-model="definition.attachments" theme="bootstrap">         <ui-select-match >{{$item.name}}</ui-select-match>         <ui-select-choices repeat="template.id template in templates">{{template.name}}</ui-select-choices>       </ui-select> 

this caused failing include select.css file in index.html file. add following <head> tag in index.html:

<link rel="stylesheet" href="path/to/select.css"/> 

Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -