5

我正在使用UI-Select,我注意到单击任何标签会使它们变成蓝色,这对我想做的事情没有任何意义。如果单击,我希望将它们删除。经过检查,我注意到一个“x”会触发以下内容:

ng-click="$selectMultiple.removeChoice($index)"

进行一些挖掘后,我找到了触发它的模板,它是“match-multiple.tpl.html”。我将 ng-click 复制到输入,使其如下。

<span class="ui-select-match">
  <span ng-repeat="$item in $select.selected">
    <span 
      class="ui-select-match-item btn btn-default btn-xs"
      tabindex="-1"
      type="button"
      ng-disabled="$select.disabled"

      ng-click="$selectMultiple.removeChoice($index)"
      ng-class="{'btn-primary':$selectMultiple.activeMatchIndex === $index, 'select-locked':$select.isLocked(this, $index)}"
      ui-select-sort="$select.selected">
        <span class="close ui-select-match-close" ng-hide="$select.disabled" ng-click="$selectMultiple.removeChoice($index)">&nbsp;&times;</span>
    <span uis-transclude-append></span>
  </span>
 </span>
</span>

这破坏了标签系统(见图) 在此处输入图像描述

编辑 - 尝试了以下,错误消失了,但点击没有做任何事情。

        ng-click="$selectMultiple.activeMatchIndex.removeChoice($index)"

如何将 ng-cick 附加到标签而不是“X”?

4

1 回答 1

6

你在正确的路线上。我看不到您的完整代码(包括 Angular 代码),因此很难看出它为什么不起作用,但是这个 Fiddle显示了一个工作示例 - 在 ui-select 中添加几个名称,然后单击名称上的任意位置(不仅仅是'x')删除它们。

ui-select 配置如下:

  <ui-select multiple tagging ng-model="vm.selected" theme="bootstrap">
     <ui-select-match placeholder="Pick one...">{{$item.value}}</ui-select-match>
     <ui-select-choices repeat="val in vm.values | filter: $select.search track by val.value">
        <div ng-bind="val.value | highlight: $select.search"></div>
     </ui-select-choices>
  </ui-select>

以下代码使用自定义模板覆盖默认的“bootstrap/match-multiple.tpl.html”模板,该模板在父跨度上具有 ng-click 事件(就像您所做的那样) - 请注意,已经有一个 ng-click span ng-click="$selectMultiple.activeMatchIndex = $index;",我不得不将其删除并替换为ng-click="$selectMultiple.removeChoice($index)". 这段代码告诉 ui-select 使用这个自定义模板而不是默认模板:

app.run(['$templateCache', function($templateCache) {
  $templateCache.put('bootstrap/match-multiple.tpl.html',
  '<span class="ui-select-match">' +
      '<span ng-repeat="$item in $select.selected track by $index">' +
          '<span ' +
              'ng-click="$selectMultiple.removeChoice($index)" ' +
              'class="ui-select-match-item btn btn-default btn-xs" ' +
              'tabindex="-1" ' +
              'type="button" ' +
              'ng-disabled="$select.disabled" ' +
              'ng-class="{\'btn-primary\':$selectMultiple.activeMatchIndex === $index, \'select-locked\':$select.isLocked(this, $index)}" ' +
              'ui-select-sort="$select.selected">' +
            '<span class="close ui-select-match-close" ng-hide="$select.disabled" ng-click="$selectMultiple.removeChoice($index)">&nbsp;&times;</span>' +
            '<span uis-transclude-append></span>' +
        '</span>' +
      '</span>' +
  '</span>');
}]);
于 2016-10-12T09:02:03.680 回答