有人知道如何在angular中清除ui选择框的选定值吗?
我想要select2的功能,在选择框中有一个小x。看起来它没有select2得到的allow-clear方法。
如果您正在使用select2主题,则ui-select-match
指令上有一个allow-clear
选项可以为您执行此操作。你会在右边有x,你可以通过点击它来清除它。https://github.com/angular-ui/ui-select/wiki/ui-select-match
快速示例:
<ui-select-match allow-clear="true" placeholder="Select or search a country in the list...">
<span>{{$select.selected.name}}</span>
</ui-select-match>
工作示例:http://plnkr.co/edit/DbbUE68QlNLjx97pBZ56?p=preview
目前,使用引导或选择主题都无法执行此操作。
您可以在显示选择时添加一个小的X按钮。
<ui-select-match placeholder="Select or search a country in the list...">
<span>{{$select.selected.name}}</span>
<button class="clear" ng-click="clear($event)">X</button>
</ui-select-match>
然后停止点击事件冒泡,并触发打开事件。然后通过覆盖选定的模型来清除该字段。
$scope.clear = function($event) {
$event.stopPropagation();
$scope.country.selected = undefined;
};
这是plnkr。http://plnkr.co/edit/qY7MbR
如果您使用引导程序,从设计的角度来看,您还可以使用fa移除图标。
此外,从可用性的角度来看,您可能希望将移除图标向左对齐。
JS:
<ui-select-match placeholder="Select or find...">
<button class="clear-btn" ng-click="clear($event)">
<span class="fa fa-remove"></span>
</button>
<span class="clear-btn-offset">{{$select.selected}}</span>
</ui-select-match>
CSS:
.select2 .clear-btn {
background: none;
border: none;
cursor: pointer;
padding: 5px 10px;
position: absolute;
left: -2px;
top: 1px;
}
.clear-btn-offset {
position: absolute;
left: 25px;
}
关于指令代码:
$scope.clear = function($event) {
$event.stopPropagation();
// Replace the following line with the proper variable
$scope.country.selected = undefined;
};
注意:如果我们在这种情况下使用标记和标记label="false",则允许清除功能不起作用
自定义清除功能
HTML代码
<ui-select-match placeholder=”Enter table…”>
<span>{{$select.selected.description || $select.search}}</span>
<a class=”btn btn-xs btn-link pull-right” ng-click=”clear($event, $select)”><i class=”glyphicon glyphicon-remove”></i></a>
</ui-select-match>
控制器动作代码
function clear($event, $select){
//stops click event bubbling
$event.stopPropagation();
//to allow empty field, in order to force a selection remove the following line
$select.selected = undefined;
//reset search query
$select.search = undefined;
//focus and open dropdown
$select.activate();
}