You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 6, 2024. It is now read-only.
When I use a select with multiple mz-select and disabled the select, if I try enable the select it doesn't happend.
HTML :
<select formControlName="bug" name="bug" multiple mz-select id="bug" [placeholder]="'Selecione'"
[filledIn]="true" >
<option *ngFor="let item of bug" class="left circle" [value]="item.bug">{{item.bug}}
TS:
In the ngOnInit() {
this.formulario.get('bug').disable();
this.EnableBug(data);
}
EnableBug(data) {
this.bugSelect= data.includes('E');
if (this.episodioSelecionado) {
this.formulario.get('bug').enable();
} else {
this.formulario.get('bug').disable();
}
Your Environment
The text was updated successfully, but these errors were encountered: