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>
  • 相关阅读:
    Perl 简介(适合对 C 语言有点认识的读者)
    ASP.NET中的随机密码生成
    office2003下的EXCEL中英文图表名的对应
    css布局定位系列 (转)
    使用.Net访问Office编程接口
    在.NET 2.0 中发送Email
    asp .net 发邮件(带附件)测试可用
    ASP.NET图象处理详解
    DateTable全解
    带线的无限级下拉树列表
  • 原文地址:https://www.cnblogs.com/Sisiflying/p/6802836.html
Copyright © 2011-2022 走看看