Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable Angular 5 Input fields correct way

I have a FormGroup that was created like that:

form: FormGroup;  constructor(private _formBuilder: FormBuilder) { }  this.form = this._formBuilder.group({   name: ['', Validators.required],   email: ['', Validators.required, Validators.email] }); 

When an event occurs I want to disable those inputs, so, in the HTML I added:

<input class="form-control" placeholder="Name" name="name" formControlName="name" [(ngModel)]="name" autocomplete="off" [disabled]="isDisabled" required>  <input class="form-control" placeholder="Email" name="email" formControlName="email" [(ngModel)]="email" email="true" autocomplete="off" [disabled]="isDisabled" required> 

Where isDisabled is a variable I toggle to true when the said event happens.

As you can imagine, I get the 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)   }); 

So, with the example this warning shows and with a little search I found that I should declare my controls like:

name: [{ value: '', disabled: this.isDisabled }, Validators.required] 

The problem is: It is not toggling between disabled/enabled when the variable changes between true/false

How is the correct way of having a variable controlling if an input is enabled or disabled?

I don't want to do it manually (ex: this.form.controls['name'].disable()) because it doesn't seems a very reactive way, I would have to call it inside a good amount of methods. Probably not a good practice.

Thx

like image 837
João Ghignatti Avatar asked May 07 '18 18:05

João Ghignatti


People also ask

How do you keep input field Disabled?

The disabled attribute can be set to keep a user from using the <input> element until some other condition has been met (like selecting a checkbox, etc.). Then, a JavaScript could remove the disabled value, and make the <input> element usable. Tip: Disabled <input> elements in a form will not be submitted!

Is angular input disabled?

Definition and UsageThe ng-disabled directive sets the disabled attribute of a form field (input, select, or textarea). The form field will be disabled if the expression inside the ng-disabled attribute returns true. The ng-disabled directive is necessary to be able to shift the value between true and false .

How do you disable enable a textbox input when radio button is selected deselected in angular?

Essentially what you really need is to implement a toggling function that changes a boolean type variable whenever the radio button is clicked. Then bind this variable to the disabled attribute of the input text box.


1 Answers

You can change the assignment of the variable to a setter method so that you'd have:

set isDisabled(value: boolean) {  this._isDisabled = value;  if(value) {   this.form.controls['name'].disable();  } else {     this.form.controls['name'].enable();   } } 
like image 105
Bruno Silva Avatar answered Oct 05 '22 05:10

Bruno Silva