Merge pull request #11541 from vvlladd28/bug/multimple-input/not-updated-select
Fixed multiple input widget not updated dynamically selector after change and save value
This commit is contained in:
commit
a36706198c
@ -123,8 +123,8 @@
|
|||||||
<mat-label>{{key.label}}</mat-label>
|
<mat-label>{{key.label}}</mat-label>
|
||||||
<mat-select formControlName="{{key.formId}}"
|
<mat-select formControlName="{{key.formId}}"
|
||||||
[required]="key.settings.required"
|
[required]="key.settings.required"
|
||||||
(focus)="key.isFocused = true;"
|
(openedChange)="key.isFocused = $event"
|
||||||
(selectionChange)="key.isFocused = false; inputChanged(source, key)">
|
(selectionChange)="inputChanged(source, key)">
|
||||||
<mat-option *ngFor="let option of key.settings.selectOptions"
|
<mat-option *ngFor="let option of key.settings.selectOptions"
|
||||||
[value]="option.value"
|
[value]="option.value"
|
||||||
[disabled]="key.settings.isEditable === 'readonly'">
|
[disabled]="key.settings.isEditable === 'readonly'">
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user