按下Tab键时如何选择垫子选项?它应该像垫子自动完成角度6中的输入按钮一样工作

时间:2019-03-08 07:05:24

标签: javascript angular angular-material material-design angular-material2

按Tab键时如何选择垫子选项?它的工作方式类似于垫子自动完成角度6中的输入按钮... 在下面的URL中,当按下Enter键时,它会起作用,但是每当我们按下Tab键时,它都应该选择突出显示的选项。

<mat-form-field class="example-full-width">
    <input type="text" placeholder="Pick one" aria-label="Number" matInput [formControl]="myControl" [matAutocomplete]="auto">
    <mat-autocomplete #auto="matAutocomplete">
      <mat-option *ngFor="let option of options" [value]="option">
        {{option}}
      </mat-option>
    </mat-autocomplete>
  </mat-form-field>

Demo

1 个答案:

答案 0 :(得分:3)

您可以订阅this.autoTrigger.panelClosingActions,请参阅stackblitz

如果您的.html类似于

<mat-form-field class="example-full-width">
    <!--see the reference variable-->
    <input #typehead type="text" ...>
    <mat-autocomplete #auto="matAutocomplete">
       ...
    </mat-autocomplete>
</mat-form-field>

在您的.ts

@ViewChild( 'typehead', {read:MatAutocompleteTrigger})  autoTrigger: MatAutocompleteTrigger; 

ngAfterViewInit()
  {
    this.autoTrigger.panelClosingActions.subscribe( x =>{
      if (this.autoTrigger.activeOption)
      {
        console.log(this.autoTrigger.activeOption.value)
        this.myControl.setValue(this.autoTrigger.activeOption.value)
      }
    } )
  }

更新this answer)中一个更好的方法(使用指令)