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
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.
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>