TabStripTabComponent
Represents the Kendo UI TabStrip tab component. Use this component to define individual tabs within a TabStrip.
<kendo-tabstrip>
<kendo-tabstrip-tab title="Home" [selected]="true">
<ng-template kendoTabContent>
Home content here
</ng-template>
</kendo-tabstrip-tab>
</kendo-tabstrip>
Selector
kendo-tabstrip-tab
Export Name
Accessible in templates as #kendoTabStripTabInstance="kendoTabStripTab"
Inputs
Name | Type | Default | Description |
---|---|---|---|
closable |
|
Shows a close button inside the tab when set to | |
closeIcon |
|
Sets the name of an existing font icon in the Kendo UI theme for the close button.
This setting overrides the TabStrip | |
closeIconClass |
|
Sets custom CSS classes for the close button icon.
You can define a single class or multiple classes separated by spaces.
This setting overrides the TabStrip | |
closeSVGIcon |
|
Sets an SVG icon for the close button. You can use an existing Kendo SVG icon or provide a custom one. | |
cssClass |
|
Specifies the CSS classes to apply to the | |
cssStyle |
|
Specifies the CSS styles to apply to the | |
disabled |
|
|
Disables the tab and prevents user interaction (see example). |
selected |
|
Selects the tab when the TabStrip loads (see example). | |
title |
|
Sets the title text for the tab (see example). |