MyDictionarySelectTemplate.html 687 Bytes

<div class="input-group">
    <ui-select ng-model="$saSelectCtrl.cmodel" on-select="$saSelectCtrl.select($item)"
               theme="bootstrap" name="{{$saSelectCtrl.nv}}" >
        <ui-select-match placeholder="{{$saSelectCtrl.ph}}">{{$select.selected.name}}</ui-select-match>
        <ui-select-choices repeat="item.code as item in $saSelectCtrl.datas">
            <span ng-bind="item.name"></span>
        </ui-select-choices>
    </ui-select>
    <span class="input-group-btn">
        <button type="button" ng-click="$saSelectCtrl.remove()" class="btn btn-default">
            <span class="glyphicon glyphicon-trash"></span>
        </button>
    </span>
</div>