文章分類/Infragistics
透過使用 IgxChip 的 tabIndex 屬性,您可以指定 IgxChip 的 DOM 元素(div 標籤)的 tabIndex 屬性。例如,當透過按 Tab 鍵控制焦點時,這非常有用。
<div class="spacing"> <igx-chip *ngFor="let chip of chipList" [id]="chip.id" [tabIndex]="chip.tabIndex" > {{ chip.text }} </igx-chip> </div>