admin管理员组文章数量:1347693
I have created a plunk in which I want to validate a form that has a button created using font-awesome.
The text field is required and I want to disabled the icon if no data is entered.But ng-disabled
dosen't seem to support this functionality with font awesome icon.
Has anyone faced this issue before.Please share your thoughts..
Please find the plunk here
I have created a plunk in which I want to validate a form that has a button created using font-awesome.
The text field is required and I want to disabled the icon if no data is entered.But ng-disabled
dosen't seem to support this functionality with font awesome icon.
Has anyone faced this issue before.Please share your thoughts..
Please find the plunk here
Share Improve this question edited Jun 22, 2018 at 16:27 georgeawg 49k13 gold badges77 silver badges98 bronze badges asked Aug 18, 2016 at 4:09 forgottoflyforgottofly 2,72912 gold badges54 silver badges96 bronze badges 1- For your reference: stackoverflow./questions/30891858/… – Gopinath Shiva Commented Aug 18, 2016 at 4:16
2 Answers
Reset to default 9Place it inside a button and it should work:
<button ng-disabled="testForm.$invalid" ng-click="$ctrl.checkIfClicked()">
<i class="fa fa-floppy-o fa-2x"></i>
</button>
You can format the style of the button in a way you want.
In file css you can add
.disabled { cursor: not-allowed; }
And in html file, you change
<i class="fa fa-floppy-o fa-2x" ng-class="{disabled: testForm.$invalid}" aria-hidden="true" ng-click="$ctrl.checkIfClicked()"></i>
本文标签: javascriptngdisabled not working with ltigt tag using fontawesomeStack Overflow
版权声明:本文标题:javascript - ng-disabled not working with <i> tag using font-awesome - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743840277a2548148.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论