zoukankan      html  css  js  c++  java
  • ui-select : There is no "X"(delete button) with selectize theme, when allow-clear="true"

    but add allow-clear="true"
    For Bootstrap and Select2 themes, it's working perfectly.

    reason:

    It looks like the icon/button is not present on the selectize template. 

    before:

    <ui-select ng-model="rfilter.value" name="{{rfilter.id}}" required ng-style="{'minWidth': '80px'}" theme="selectize">
                            <ui-select-match allow-clear="true" placeholder="{{rfilter.name}}">
                                {{$select.selected.name}}
                                <!--<a ng-show="$select.allowClear && !$select.isEmpty() && ($select.disabled !== true)" aria-label="Select box clear" style="padding-right: 0;" ng-click="$select.clear($event)" class="btn btn-xs btn-link pull-right">-->
                                    <!--<i class="glyphicon glyphicon-remove" aria-hidden="true" style="top: 2px;"></i>-->
                                <!--</a>-->
                            </ui-select-match>
                            <ui-select-choices repeat="vvalue as vvalue in rfilter.valid_values | filter: { name: $select.search }">
                                <div ng-bind-html="vvalue.name | highlight: $select.search"></div>
                            </ui-select-choices>
                        </ui-select>

    Workaround:

    <ui-select ng-model="rfilter.value" name="{{rfilter.id}}" required ng-style="{'minWidth': '80px'}" theme="selectize">
                            <ui-select-match allow-clear="true" placeholder="{{rfilter.name}}">
                                {{$select.selected.name}}
                                <a ng-show="$select.allowClear && !$select.isEmpty() && ($select.disabled !== true)" aria-label="Select box clear" style="padding-right: 0;" ng-click="$select.clear($event)" class="btn btn-xs btn-link pull-right">
                                    <i class="glyphicon glyphicon-remove" aria-hidden="true" style="top: 2px;"></i>
                                </a>
                            </ui-select-match>
                            <ui-select-choices repeat="vvalue as vvalue in rfilter.valid_values | filter: { name: $select.search }">
                                <div ng-bind-html="vvalue.name | highlight: $select.search"></div>
                            </ui-select-choices>
                        </ui-select>
  • 相关阅读:
    跨域请求携带cookie
    vue keep-alive
    关于js replace 第二个参数时函数时,函数参数解析
    前端开发规范之CSS
    git命令集合(正在完善中...)
    怎么写jQuery的插件
    git命令集合
    GitHub创建静态网站预览方法
    正则表达式
    各种浏览器全屏模式的方法、属性和事件介绍
  • 原文地址:https://www.cnblogs.com/Sisiflying/p/6802836.html
Copyright © 2011-2022 走看看