Unplanned
Last Updated: 19 Oct 2023 09:29 by ADMIN

We would like to add certain quick access buttons on the same level as the kendo-tabstrip. Since the kendo-tabstrip needs to take as much space as possible for its content to be displayed fully, we currently have to use ugly workarounds like placing them absolute into free areas and creating those areas by setting margins for our tab-header.

Therefore we would like to have templates allows content to be displayed before or after the kendo-tabstrip horizontally and on the same level as the tab-header


Unplanned
Last Updated: 07 Nov 2022 14:17 by ADMIN
Created by: Rico
Comments: 0
Category: TabStrip
Type: Feature Request
5

Would be very useful to have the ability of dropdowns integrated into the tapstrip component.

 

Unplanned
Last Updated: 17 Aug 2021 08:52 by ADMIN
Created by: Ege
Comments: 0
Category: TabStrip
Type: Feature Request
2
Provide support for placing utility items on the tabstrip, next to the tab items. For example buttons, inputs, etc.
Unplanned
Last Updated: 19 Feb 2021 06:46 by ADMIN
Created by: Pieter
Comments: 1
Category: TabStrip
Type: Feature Request
6

Hi Kendo UI

 

We had to programmatically select the correct tab. We used the selectTab method of the TabStripComponent.
We found it quite hard to detect the correct index, because we had to dynamically hide (with ngIf) a tab.
Checking on the title of the SelectEvent is possible, but this title is sometimes translated, it is not that convenient.

 

My collegue prepared a stackblitz to illustrate the problem. https://stackblitz.com/edit/angular-kendo-tabstrip-ngif?file=app/app.component.ts

Our suggestion is to add an extra (optional) id to the SelectEvent.
And that id should be the id of the tab, if the id of the tab has been set.

<kendo-tabstrip (tabSelect)="onTabSelect($event)">
        <kendo-tabstrip-tab [title]="'Paris'" [selected]="true" id="parisTab">
          <ng-template kendoTabContent>
            <p>
            Paris
            </p>
          </ng-template>
        </kendo-tabstrip-tab>
        <kendo-tabstrip-tab [title]="'New York City'" *ngIf="isNyVisible" id="nyTab">
          <ng-template kendoTabContent>
            <p>
              The City of New Yo
             </p>
            </ng-template>
          </kendo-tabstrip-tab>
          <kendo-tabstrip-tab [title]="'Antwerp'" id="antwerpTab">
          <ng-template kendoTabContent>
            <p>
              Antwerp
             </p>
            </ng-template>
          </kendo-tabstrip-tab>
       </kendo-tabstrip>

public onTabSelect(e: SelectEvent) {
    console.log(e.index, e.title, e.id);
    // Challenge: How to determine which tab is selected?
    // e.index is not reliable if there is a ngIf on one of the Tabs
    console.log('isNySelected', e.index === 1); // Wrong results if NY Tab has ngIf="false"
    // Possible solution: Allow to provide an ID on the kendo-tabstrip-tab
    console.log('isNySelected', e.id=== "nyTab"); // Always correct. Nice...
  }

Kind regards

Pieter


Unplanned
Last Updated: 26 Jul 2021 06:15 by ADMIN
Created by: Imported User
Comments: 0
Category: TabStrip
Type: Feature Request
16
Reorder tabs with drag and drop like so: http://demos.telerik.com/kendo-ui/sortable/integration-tabstrip
Unplanned
Last Updated: 01 Mar 2020 00:00 by Paul
Created by: jean-philippe
Comments: 4
Category: TabStrip
Type: Feature Request
28
As the panel bar seems to support it it would be appreciable to have support for routes in the tabstrip component.