Angularjs: Ui-select ng-click in ui-select-choices



我正在尝试在选项中使用添加按钮,但问题是ng单击触发但未选择该选项。

<ui-select ng-model="datactrl.newservice.selected" theme="selectize" ng-disabled="disabled" style="width: 100%;">
    <ui-select-match placeholder="...">
        <span ng-bind-html="$select.selected.name"></span>          
    </ui-select-match>
    <ui-select-choices repeat="service in data.base_services | filter: $select.search">
        <span ng-bind-html="service.name | highlight: $select.search"></span>
        <!-- HERE NOT -->
        <a href="" class="pull-right" ng-click="setnewservice()">
            <i class="glyphicon glyphicon-plus-sign"></i>
        </a>    
        <!-- ### -->
    </ui-select-choices>
</ui-select>                            

<!-- here obviously works -->
<a href="" class="pull-right" ng-click="setnewservice()">
    <i class="glyphicon glyphicon-plus-sign"></i>
</a>

我可以向函数发送一些参数并处理这种情况,即使选择该项目索引的单击链接,以便具有正确值的模型,或者像上面的工作样本一样把它带到外面......

但是我怎样才能正确处理这个问题,停止事件,选择选项而不发送对象或其某些属性,然后执行其余操作?

$scope.setnewservice = function ($event) {
    $event.stopPropagation();
    // ??
}

在 ui-select 上使用 ng-change,而不是在 ui-select-options 上使用 ng-change更改此设置:

ng-click="setnewservice()

自:

ui-select ng-model="datactrl.newservice.selected" theme="selectize" ng-disabled="disabled" style="width: 100%;" ng-change="setnewservice()>

您可以像这样将 on-select 属性添加到代码中:

on-select="setnewservice($item, $model)"

相关内容

  • 没有找到相关文章

最新更新