如何将ui-select设置为只读模式?

时间:2015-08-12 16:03:24

标签: angularjs ui-select

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

2 个答案:

答案 0 :(得分:8)

使用ng-disabled代替ng-readonly。

<ui-select ng-disabled="isReadOnly" ...>
    ...
</ui-select>

答案 1 :(得分:1)

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

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

DEMO here