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>
  • 相关阅读:
    手写一个call、apply、bind
    setTimeout
    meta标签及Keywords
    用VSCode插件来一键填满Github的绿色格子吧-AutoCommit
    前端工具-定制ESLint 插件以及了解ESLint的运行原理
    JS基础-全方面掌握继承
    JS基础-该如何理解原型、原型链?
    前端中等算法-无重复字符的最长子串
    前端面试 js 你有多了解call,apply,bind?
    博客图片失效?使用npm工具一次下载/替换所有失效的外链图片
  • 原文地址:https://www.cnblogs.com/Sisiflying/p/6802836.html
Copyright © 2011-2022 走看看