首页 > 解决方案 > 角材料垫-自动完成打开面板

问题描述

我有带有自动完成字段的模态。我将 Angular 5 与 Angular 材料 2 一起使用。当模态加载时,第一个字段的面板始终处于打开状态...

在此处输入图像描述

如何避免这种情况?

我试图在另一个字段上使用 autofocus 属性,但它不起作用......

<form name="indexation">
                  <br>
                  <div class="row">
                    <div class="col-md-12">
                      <mat-form-field class="index-full-width">
                        <input
                          matInput
                          type="text"
                          [(ngModel)]="patientChoice"
                          placeholder="Patient"
                          aria-label="Patient"
                          [matAutocomplete]="autoPatient"
                          [formControl]="myControl">
                        <mat-autocomplete (optionSelected)="selectPat()" #autoPatient="matAutocomplete" [displayWith]="displayFnPat">

                          <mat-option *ngFor="let patient of filteredPatients | async" [value]="patient">
                            <span>{{ patient.lastName }}</span>
                            <small>{{patient.firstName}}</small> |
                            <span>né(e) le {{ patient.dateNaissance }}</span> |
                            <small>IPP: {{patient.ipp}}</small>
                          </mat-option>
                        </mat-autocomplete>
                      </mat-form-field>
                    </div>
                  </div>
                  <br>

这个问题是否来自材料?

标签: angularautocompletefocusangular-material

解决方案


当有要显示的选项并且该字段具有焦点时,结果面板将自动打开。默认情况下,对话框会将焦点设置在第一个可聚焦元素上,因此我认为这就是为什么在对话框加载时自动完成功能会打开的原因。为避免这种情况,请autoFocus: false在启动对话框时使用 MatDialogConfig 选项。


推荐阅读