Declined
Last Updated: 21 Jun 2021 12:56 by ADMIN
Imported User
Created on: 26 Aug 2017 07:11
Category: TabStrip
Type: Feature Request
1
TabStrip html title
I need some extra view of Tabstripe title like icon title and close button so can we add html title so good design of tabstripe title
2 comments
ADMIN
Martin
Posted on: 21 Jun 2021 12:56

We are declining this request due to low interest and demand.

Regards,
Martin
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Fabio
Posted on: 18 Dec 2017 16:46
you can use a template for that. Ex:

<kendo-tabstrip (tabSelect)="open($event)">
    <kendo-tabstrip-tab
      *ngFor="let item of tabsItems let i=index"
      [selected]="item.Active">
      <ng-template kendoTabTitle>
        {{item.Name}}
        <a href="#" class="close-tab" (click)="close($event, item)">
          <i class="icon-close"></i>
        </a>
      </ng-template>
      <ng-template kendoTabContent>
        <app-tabs-item [item]="item"></app-tabs-item>
      </ng-template>
    </kendo-tabstrip-tab>
</kendo-tabstrip>