Is it possible to achieve the following:
<directiveName parameter1=value1 parameter2=value2 ng-disabled="true"> </directiveName>
I tried this but couldn't get it to work and didn't find many examples of its use.
However, I can toggle the visibility of the directive using:
<directiveName parameter1=value1 parameter2=value2 ng-if="true"> </directiveName>
Why is ng-disabled
not working for me?
(The purpose of the directive is to connect with a topic and display messages in the topic as plain text.)