angular - Reactive form - disable drop down
I have a drop down in Angular reactive form.
I want to disable it on select. But when i use the [disabled]='' attribute directly get this error.
Typescript
// Angular Reactive form validation
this.createform = this.formBuilder.group({ENT_TYP_PSD: ''});
HTML
<div class="form-group row">
<label class="col-md-3" for="ENT_TYP_PSD">Type of Natural or Legal Person </label>
<p-dropdown class="col-md-4" name="ENT_TYP_PSD" [options]="parentEntities" optionLabel="EntityTypeName"
placeholder="Please select" (onChange)="entityTypeChanged($event)" formControlName="ENT_TYP_PSD" [disabled]='disableEntityType'>
</p-dropdown>
</div>
Error Message:-
It looks like you're using the disabled attribute with a reactive form
directive. If you set disabled to true when you set up this control
in your component class, the disabled attribute will actually be set
in the DOM for you. We recommend using this approach to avoid
'changed after checked' errors.
Example: form = new FormGroup({ first: new FormControl({value: 'Nancy', disabled: true}, Validators.required),
last: new FormControl('Drew', Validators.required) });
And when I use this in typescript, I can't get this field ENT_TYP_PSD value at all in the this.createform.value.
this.createform.controls['ENT_TYP_PSD'].disable(true)
angular typescript angular-reactive-forms
add a comment |
I have a drop down in Angular reactive form.
I want to disable it on select. But when i use the [disabled]='' attribute directly get this error.
Typescript
// Angular Reactive form validation
this.createform = this.formBuilder.group({ENT_TYP_PSD: ''});
HTML
<div class="form-group row">
<label class="col-md-3" for="ENT_TYP_PSD">Type of Natural or Legal Person </label>
<p-dropdown class="col-md-4" name="ENT_TYP_PSD" [options]="parentEntities" optionLabel="EntityTypeName"
placeholder="Please select" (onChange)="entityTypeChanged($event)" formControlName="ENT_TYP_PSD" [disabled]='disableEntityType'>
</p-dropdown>
</div>
Error Message:-
It looks like you're using the disabled attribute with a reactive form
directive. If you set disabled to true when you set up this control
in your component class, the disabled attribute will actually be set
in the DOM for you. We recommend using this approach to avoid
'changed after checked' errors.
Example: form = new FormGroup({ first: new FormControl({value: 'Nancy', disabled: true}, Validators.required),
last: new FormControl('Drew', Validators.required) });
And when I use this in typescript, I can't get this field ENT_TYP_PSD value at all in the this.createform.value.
this.createform.controls['ENT_TYP_PSD'].disable(true)
angular typescript angular-reactive-forms
1
try usingthis.createform.getRawValue()
– Sarthak Aggarwal
Nov 19 '18 at 12:53
At the time of building the form-group there is only two form-controls are there. That's why you couldn't get it.. can you please add your code snippet here?
– Madhankumar
Nov 19 '18 at 12:56
@SarthakAggarwal. Many thanks, mate. that helped
– Jay
Nov 19 '18 at 14:49
add a comment |
I have a drop down in Angular reactive form.
I want to disable it on select. But when i use the [disabled]='' attribute directly get this error.
Typescript
// Angular Reactive form validation
this.createform = this.formBuilder.group({ENT_TYP_PSD: ''});
HTML
<div class="form-group row">
<label class="col-md-3" for="ENT_TYP_PSD">Type of Natural or Legal Person </label>
<p-dropdown class="col-md-4" name="ENT_TYP_PSD" [options]="parentEntities" optionLabel="EntityTypeName"
placeholder="Please select" (onChange)="entityTypeChanged($event)" formControlName="ENT_TYP_PSD" [disabled]='disableEntityType'>
</p-dropdown>
</div>
Error Message:-
It looks like you're using the disabled attribute with a reactive form
directive. If you set disabled to true when you set up this control
in your component class, the disabled attribute will actually be set
in the DOM for you. We recommend using this approach to avoid
'changed after checked' errors.
Example: form = new FormGroup({ first: new FormControl({value: 'Nancy', disabled: true}, Validators.required),
last: new FormControl('Drew', Validators.required) });
And when I use this in typescript, I can't get this field ENT_TYP_PSD value at all in the this.createform.value.
this.createform.controls['ENT_TYP_PSD'].disable(true)
angular typescript angular-reactive-forms
I have a drop down in Angular reactive form.
I want to disable it on select. But when i use the [disabled]='' attribute directly get this error.
Typescript
// Angular Reactive form validation
this.createform = this.formBuilder.group({ENT_TYP_PSD: ''});
HTML
<div class="form-group row">
<label class="col-md-3" for="ENT_TYP_PSD">Type of Natural or Legal Person </label>
<p-dropdown class="col-md-4" name="ENT_TYP_PSD" [options]="parentEntities" optionLabel="EntityTypeName"
placeholder="Please select" (onChange)="entityTypeChanged($event)" formControlName="ENT_TYP_PSD" [disabled]='disableEntityType'>
</p-dropdown>
</div>
Error Message:-
It looks like you're using the disabled attribute with a reactive form
directive. If you set disabled to true when you set up this control
in your component class, the disabled attribute will actually be set
in the DOM for you. We recommend using this approach to avoid
'changed after checked' errors.
Example: form = new FormGroup({ first: new FormControl({value: 'Nancy', disabled: true}, Validators.required),
last: new FormControl('Drew', Validators.required) });
And when I use this in typescript, I can't get this field ENT_TYP_PSD value at all in the this.createform.value.
this.createform.controls['ENT_TYP_PSD'].disable(true)
angular typescript angular-reactive-forms
angular typescript angular-reactive-forms
edited Nov 19 '18 at 13:33
asked Nov 19 '18 at 12:50
Jay
4,30952553
4,30952553
1
try usingthis.createform.getRawValue()
– Sarthak Aggarwal
Nov 19 '18 at 12:53
At the time of building the form-group there is only two form-controls are there. That's why you couldn't get it.. can you please add your code snippet here?
– Madhankumar
Nov 19 '18 at 12:56
@SarthakAggarwal. Many thanks, mate. that helped
– Jay
Nov 19 '18 at 14:49
add a comment |
1
try usingthis.createform.getRawValue()
– Sarthak Aggarwal
Nov 19 '18 at 12:53
At the time of building the form-group there is only two form-controls are there. That's why you couldn't get it.. can you please add your code snippet here?
– Madhankumar
Nov 19 '18 at 12:56
@SarthakAggarwal. Many thanks, mate. that helped
– Jay
Nov 19 '18 at 14:49
1
1
try using
this.createform.getRawValue()
– Sarthak Aggarwal
Nov 19 '18 at 12:53
try using
this.createform.getRawValue()
– Sarthak Aggarwal
Nov 19 '18 at 12:53
At the time of building the form-group there is only two form-controls are there. That's why you couldn't get it.. can you please add your code snippet here?
– Madhankumar
Nov 19 '18 at 12:56
At the time of building the form-group there is only two form-controls are there. That's why you couldn't get it.. can you please add your code snippet here?
– Madhankumar
Nov 19 '18 at 12:56
@SarthakAggarwal. Many thanks, mate. that helped
– Jay
Nov 19 '18 at 14:49
@SarthakAggarwal. Many thanks, mate. that helped
– Jay
Nov 19 '18 at 14:49
add a comment |
1 Answer
1
active
oldest
votes
The error means you shouldn't use the disabled
attribute. Instead, you should programmatically set the disabled state of the input, so that Angualr can keep track of it.
Try removing the attribute and using getter/setter/variable combo :
_disableEntityType: boolean
get disableEntityType() { return !!this._disableEntityType; }
set disableEntityType(value: boolean) {
this._disableEntityType = value;
this.createForm.get('ENT_TYP_PSD')[value ? 'disable' : 'enable']();
}
For the creation :
this.createform = this.formBuilder.group({ENT_TYP_PSD: {
value: '',
disabled: this.disableEntityType
}});
Thanks mate, once I disable I am not able to get this dropdown actual value.
– Jay
Nov 19 '18 at 13:47
1
You have to useform.getRawValue()
– trichetriche
Nov 19 '18 at 13:48
Thanks form.getRawValue() solved the issue. :-)
– Jay
Nov 19 '18 at 14:48
@Jay No problem, if it feels it helped you, consider leaving an upvote and/or closing your question !
– trichetriche
Nov 19 '18 at 14:48
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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%2f53375034%2fangular-reactive-form-disable-drop-down%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The error means you shouldn't use the disabled
attribute. Instead, you should programmatically set the disabled state of the input, so that Angualr can keep track of it.
Try removing the attribute and using getter/setter/variable combo :
_disableEntityType: boolean
get disableEntityType() { return !!this._disableEntityType; }
set disableEntityType(value: boolean) {
this._disableEntityType = value;
this.createForm.get('ENT_TYP_PSD')[value ? 'disable' : 'enable']();
}
For the creation :
this.createform = this.formBuilder.group({ENT_TYP_PSD: {
value: '',
disabled: this.disableEntityType
}});
Thanks mate, once I disable I am not able to get this dropdown actual value.
– Jay
Nov 19 '18 at 13:47
1
You have to useform.getRawValue()
– trichetriche
Nov 19 '18 at 13:48
Thanks form.getRawValue() solved the issue. :-)
– Jay
Nov 19 '18 at 14:48
@Jay No problem, if it feels it helped you, consider leaving an upvote and/or closing your question !
– trichetriche
Nov 19 '18 at 14:48
add a comment |
The error means you shouldn't use the disabled
attribute. Instead, you should programmatically set the disabled state of the input, so that Angualr can keep track of it.
Try removing the attribute and using getter/setter/variable combo :
_disableEntityType: boolean
get disableEntityType() { return !!this._disableEntityType; }
set disableEntityType(value: boolean) {
this._disableEntityType = value;
this.createForm.get('ENT_TYP_PSD')[value ? 'disable' : 'enable']();
}
For the creation :
this.createform = this.formBuilder.group({ENT_TYP_PSD: {
value: '',
disabled: this.disableEntityType
}});
Thanks mate, once I disable I am not able to get this dropdown actual value.
– Jay
Nov 19 '18 at 13:47
1
You have to useform.getRawValue()
– trichetriche
Nov 19 '18 at 13:48
Thanks form.getRawValue() solved the issue. :-)
– Jay
Nov 19 '18 at 14:48
@Jay No problem, if it feels it helped you, consider leaving an upvote and/or closing your question !
– trichetriche
Nov 19 '18 at 14:48
add a comment |
The error means you shouldn't use the disabled
attribute. Instead, you should programmatically set the disabled state of the input, so that Angualr can keep track of it.
Try removing the attribute and using getter/setter/variable combo :
_disableEntityType: boolean
get disableEntityType() { return !!this._disableEntityType; }
set disableEntityType(value: boolean) {
this._disableEntityType = value;
this.createForm.get('ENT_TYP_PSD')[value ? 'disable' : 'enable']();
}
For the creation :
this.createform = this.formBuilder.group({ENT_TYP_PSD: {
value: '',
disabled: this.disableEntityType
}});
The error means you shouldn't use the disabled
attribute. Instead, you should programmatically set the disabled state of the input, so that Angualr can keep track of it.
Try removing the attribute and using getter/setter/variable combo :
_disableEntityType: boolean
get disableEntityType() { return !!this._disableEntityType; }
set disableEntityType(value: boolean) {
this._disableEntityType = value;
this.createForm.get('ENT_TYP_PSD')[value ? 'disable' : 'enable']();
}
For the creation :
this.createform = this.formBuilder.group({ENT_TYP_PSD: {
value: '',
disabled: this.disableEntityType
}});
answered Nov 19 '18 at 12:56
trichetriche
25.4k42051
25.4k42051
Thanks mate, once I disable I am not able to get this dropdown actual value.
– Jay
Nov 19 '18 at 13:47
1
You have to useform.getRawValue()
– trichetriche
Nov 19 '18 at 13:48
Thanks form.getRawValue() solved the issue. :-)
– Jay
Nov 19 '18 at 14:48
@Jay No problem, if it feels it helped you, consider leaving an upvote and/or closing your question !
– trichetriche
Nov 19 '18 at 14:48
add a comment |
Thanks mate, once I disable I am not able to get this dropdown actual value.
– Jay
Nov 19 '18 at 13:47
1
You have to useform.getRawValue()
– trichetriche
Nov 19 '18 at 13:48
Thanks form.getRawValue() solved the issue. :-)
– Jay
Nov 19 '18 at 14:48
@Jay No problem, if it feels it helped you, consider leaving an upvote and/or closing your question !
– trichetriche
Nov 19 '18 at 14:48
Thanks mate, once I disable I am not able to get this dropdown actual value.
– Jay
Nov 19 '18 at 13:47
Thanks mate, once I disable I am not able to get this dropdown actual value.
– Jay
Nov 19 '18 at 13:47
1
1
You have to use
form.getRawValue()
– trichetriche
Nov 19 '18 at 13:48
You have to use
form.getRawValue()
– trichetriche
Nov 19 '18 at 13:48
Thanks form.getRawValue() solved the issue. :-)
– Jay
Nov 19 '18 at 14:48
Thanks form.getRawValue() solved the issue. :-)
– Jay
Nov 19 '18 at 14:48
@Jay No problem, if it feels it helped you, consider leaving an upvote and/or closing your question !
– trichetriche
Nov 19 '18 at 14:48
@Jay No problem, if it feels it helped you, consider leaving an upvote and/or closing your question !
– trichetriche
Nov 19 '18 at 14:48
add a comment |
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%2f53375034%2fangular-reactive-form-disable-drop-down%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
1
try using
this.createform.getRawValue()
– Sarthak Aggarwal
Nov 19 '18 at 12:53
At the time of building the form-group there is only two form-controls are there. That's why you couldn't get it.. can you please add your code snippet here?
– Madhankumar
Nov 19 '18 at 12:56
@SarthakAggarwal. Many thanks, mate. that helped
– Jay
Nov 19 '18 at 14:49