Angular Material 自动完成设置 scrolltop
Angular Material Autocomplete set scrolltop
打开 <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>
我使用两个不同输入的原因是我使用另一个自定义指令来格式化输入。
这似乎是一个时间问题,所以我实施了一个修补程序以将 _setScrollTop 推迟到下一个周期:
setTimeout(() => {
this.toTimeAutocomplete._setScrollTop(2016);
}, 0);
打开 <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>
我使用两个不同输入的原因是我使用另一个自定义指令来格式化输入。
这似乎是一个时间问题,所以我实施了一个修补程序以将 _setScrollTop 推迟到下一个周期:
setTimeout(() => {
this.toTimeAutocomplete._setScrollTop(2016);
}, 0);