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?
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
Post a Comment