Skip to main content

angular material - How to delete Tab programmatically

app.component.ts

import { Component } from '@angular/core';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})


export class AppComponent { 
  tabs = ["SQL","ASP.NET","PHP"];

  deleteTab(index:number){
    this.tabs.splice(index,1);
  }
}
app.component.html

<h2 style="padding-top:25px; padding-bottom:25px;">
    Angular Material - How to delete Tab programmatically
</h2>


<h3>Selected Tab Index : {{tabGroup.selectedIndex}}</h3>

<mat-tab-group 
    [selectedIndex]="0" 
    #tabGroup 
    style="margin-bottom:50px;">
        <mat-tab 
            *ngFor="let tab of tabs; let index = index"
            [label]="tab">
                Content of {{tab}}
                <button 
                    mat-stroked-button 
                    color="warn"
                    [disabled]="tabs.length === 1"
                    (click)="deleteTab(index)">
                        Delete Tab
                </button>
        </mat-tab>
</mat-tab-group>
app.module.ts [import]

import { MatTabsModule } from '@angular/material/tabs'
More Angular tutorials