Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有可能以及如何使我的 ui-select 只读?当然,我已经尝试过 ng-readonly="isReadOnly" 我在控制器中定义的地方 $scope.isReadOnly=false; 当然,我想根据来自服务器的可以改变状态的数据来“在运行时”计算它。
使用 ng-disabled 而不是 ng-readonly。
<ui-select ng-disabled="isReadOnly" ...> ... </ui-select>
如果您需要查看选项并禁用文本输入,您可以使用启用搜索的选项
<ui-select search-enabled="false" ...> ... </ui-select>
演示在这里