admin管理员组文章数量:1348227
I am trying to set a tab to be disabled in a Angular Ui-bootstrap 2.0 tabset.
In the example on their site, the one they are enabling and disabling (with a button) is a dynamic tab (an ng-repeat). I tried that, it works.
I am trying to disable a Tab in a set that's not created with an ng-repeat, and it does not seem to work. I have hard-coded the disabled property. I tried using a simple "true" and a controller property. The tab remains selectable.
<uib-tabset active="active">
<uib-tab index="0" heading="Static title">
Lorem ipsum dolor sit amet
</uib-tab>
<uib-tab index="1" heading="Another static title">
Consectetur adipisicing elit.
</uib-tab>
<uib-tab index="2" heading="Still another static title" disabled="amDisabled">
Recusandae
</uib-tab>
where $scope = amDisabled = true
Here is a plunker.
I am trying to set a tab to be disabled in a Angular Ui-bootstrap 2.0 tabset.
In the example on their site, the one they are enabling and disabling (with a button) is a dynamic tab (an ng-repeat). I tried that, it works.
I am trying to disable a Tab in a set that's not created with an ng-repeat, and it does not seem to work. I have hard-coded the disabled property. I tried using a simple "true" and a controller property. The tab remains selectable.
<uib-tabset active="active">
<uib-tab index="0" heading="Static title">
Lorem ipsum dolor sit amet
</uib-tab>
<uib-tab index="1" heading="Another static title">
Consectetur adipisicing elit.
</uib-tab>
<uib-tab index="2" heading="Still another static title" disabled="amDisabled">
Recusandae
</uib-tab>
where $scope = amDisabled = true
Here is a plunker.
Share Improve this question asked Sep 8, 2016 at 20:06 SteveSteve 14.9k39 gold badges138 silver badges245 bronze badges1 Answer
Reset to default 10You need to use the disable
attribute not disabled
Here is the same plunker with the disable
attribute
It's an easy mistake to make!
本文标签: javascriptDisabling a static tab with Angular UI BootstrapStack Overflow
版权声明:本文标题:javascript - Disabling a static tab with Angular UI Bootstrap? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743841424a2548347.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论