6

是否有可能以及如何使我的 ui-select 只读?当然,我已经尝试过 ng-readonly="isReadOnly" 我在控制器中定义的地方 $scope.isReadOnly=false; 当然,我想根据来自服务器的可以改变状态的数据来“在运行时”计算它。

4

2 回答 2

8

使用 ng-disabled 而不是 ng-readonly。

<ui-select ng-disabled="isReadOnly" ...>
    ...
</ui-select>
于 2015-08-12T16:04:16.407 回答
1

如果您需要查看选项并禁用文本输入,您可以使用启用搜索的选项

<ui-select search-enabled="false" ...> ... </ui-select>

演示在这里

于 2017-07-28T16:21:36.417 回答