Angular 6 disable or hide Directive
up vote
0
down vote
favorite
I am following this https://blogs.msdn.microsoft.com/premier_developer/2018/03/07/angular-how-to-implement-role-based-security/ article to provide role based permissions in my app.
I want to use this directive (MyDisableIfUnauthorizedDirective) in a top level component. Say i have Orders module and few submodules and components each having its own forms.
How can i disable ALL formcontrols in orders.module. Example says
this.el.nativeElement.disabled = true;
But this does nothing. This indeed does work if i use this directive on each formControl input but i probably have over 40 spanning multiple modules and components all under orders.module
angular angular-directive
add a comment |
up vote
0
down vote
favorite
I am following this https://blogs.msdn.microsoft.com/premier_developer/2018/03/07/angular-how-to-implement-role-based-security/ article to provide role based permissions in my app.
I want to use this directive (MyDisableIfUnauthorizedDirective) in a top level component. Say i have Orders module and few submodules and components each having its own forms.
How can i disable ALL formcontrols in orders.module. Example says
this.el.nativeElement.disabled = true;
But this does nothing. This indeed does work if i use this directive on each formControl input but i probably have over 40 spanning multiple modules and components all under orders.module
angular angular-directive
I think this is how it is supposed to work. If you want it to disable all the fields in all the forms for all the components, then I guess you will have to loop through the whole tree and disable them.
– SiddAjmera
Sep 1 at 20:39
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am following this https://blogs.msdn.microsoft.com/premier_developer/2018/03/07/angular-how-to-implement-role-based-security/ article to provide role based permissions in my app.
I want to use this directive (MyDisableIfUnauthorizedDirective) in a top level component. Say i have Orders module and few submodules and components each having its own forms.
How can i disable ALL formcontrols in orders.module. Example says
this.el.nativeElement.disabled = true;
But this does nothing. This indeed does work if i use this directive on each formControl input but i probably have over 40 spanning multiple modules and components all under orders.module
angular angular-directive
I am following this https://blogs.msdn.microsoft.com/premier_developer/2018/03/07/angular-how-to-implement-role-based-security/ article to provide role based permissions in my app.
I want to use this directive (MyDisableIfUnauthorizedDirective) in a top level component. Say i have Orders module and few submodules and components each having its own forms.
How can i disable ALL formcontrols in orders.module. Example says
this.el.nativeElement.disabled = true;
But this does nothing. This indeed does work if i use this directive on each formControl input but i probably have over 40 spanning multiple modules and components all under orders.module
angular angular-directive
angular angular-directive
edited Sep 1 at 20:37
SiddAjmera
11.4k21137
11.4k21137
asked Sep 1 at 20:26
SeaBiscuit
1,10821123
1,10821123
I think this is how it is supposed to work. If you want it to disable all the fields in all the forms for all the components, then I guess you will have to loop through the whole tree and disable them.
– SiddAjmera
Sep 1 at 20:39
add a comment |
I think this is how it is supposed to work. If you want it to disable all the fields in all the forms for all the components, then I guess you will have to loop through the whole tree and disable them.
– SiddAjmera
Sep 1 at 20:39
I think this is how it is supposed to work. If you want it to disable all the fields in all the forms for all the components, then I guess you will have to loop through the whole tree and disable them.
– SiddAjmera
Sep 1 at 20:39
I think this is how it is supposed to work. If you want it to disable all the fields in all the forms for all the components, then I guess you will have to loop through the whole tree and disable them.
– SiddAjmera
Sep 1 at 20:39
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f52131924%2fangular-6-disable-or-hide-directive%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I think this is how it is supposed to work. If you want it to disable all the fields in all the forms for all the components, then I guess you will have to loop through the whole tree and disable them.
– SiddAjmera
Sep 1 at 20:39