打开<mat-Autocomplete>
的面板时,我想将scrollTop设置为模型中已经初始化的值。因此,我正在使用_setScrollTop
方法。问题是,当第一次打开带有选项的面板时,下面的代码不起作用,而只有在我再次单击输入字段之后。
.ts看起来像这样:
export class EventInfoComponent implements OnInit {
@Input('eventInfo') public eventInfo: SimpleEventInfoModel;
@ViewChild(MatAutocompleteTrigger) toTimeHidden: MatAutocompleteTrigger;
@ViewChild('toTimeComplete') toTimeAutocomplete: MatAutocomplete;
public openAutocomplete(e): void {
e.stopPropagation();
this.toTimeHidden.openPanel();
this.toTimeAutocomplete._setScrollTop(2016);
console.log(this.toTimeAutocomplete._getScrollTop());
}
}
这是HTML代码段:
<mat-form-field appearance="outline">
<mat-label>End Time</mat-label>
<input matInput [required]="true" [(ngModel)]="eventInfo.toTime"
name="toTime" (click)="openAutocomplete($event)">
<input type="hidden" [matAutocomplete]="toTimeComplete
[(ngModel)]="eventInfo.toTime" #toTimeHidden name="toTimeHidden">
<mat-autocomplete #toTimeComplete="matAutocomplete">
<mat-option *ngFor="let time of times" [value]="time"> {{time}}
</mat-option>
</mat-autocomplete>
<mat-icon matSuffix style="margin: 0 8px 0 8px">access_time</mat-icon>
</mat-form-field>
我使用两个不同的输入的原因是我使用了另一个自定义指令来格式化输入。
答案 0 :(得分:0)
这似乎是一个计时问题,因此我实现了一个修复程序,将_setScrollTop推迟到下一个周期:
setTimeout(() => {
this.toTimeAutocomplete._setScrollTop(2016);
}, 0);