Получить значения для mat-radio-group в mat-step - PullRequest
0 голосов
/ 11 сентября 2018

Я пытаюсь получить выбранное значение radio button в пошаговом режиме, вот мой код.

<mat-horizontal-stepper #stepper (selectionChange)="stepperChange($event)" style="max-width: 650px;">
            <mat-step *ngFor="let question of userQuestionDetails; let i = index " formGroupName="{i}">
              <div style="display: flex;">
                <button mat-mini-fab style="margin-left: 20px; margin-top: 4px;">
                  <mat-icon aria-label="Example icon-button with a heart icon">favorite</mat-icon>
                </button>
              </div>
              {{question.question_text}}
              <p></p>
              <mat-radio-group class="radio-group">
                <mat-radio-button class="radio-button" *ngFor="let choice of question.choices" [value]="choice.id" (change)="onChangeOfQuestionRadio(question, choice.id)">
                  {{choice.value}}
                </mat-radio-button>
              </mat-radio-group>
            </mat-step>
          </mat-horizontal-stepper>

Для приведенного выше кода мне нужно выбрать radio button для всех r adio groups.

...