Questions tagged [kendo-tabstrip]

A tab strip component of Kendo UI framework.

Tab strip is a Kendo UI () component.


Related tags

117 questions
9
votes
3 answers

How do I get a reference to the currently selected tab in a Kendo UI TabStrip?

I'm creating a method to delete a Kendo UI TabStrip Tab based on an 'x' image. I want it to work in the same way as other tab controls (such as Chrome/IE): If the active tab is closed then select the next tab (or if it's the last tab then select…
pfeds
  • 2,183
  • 4
  • 32
  • 48
5
votes
1 answer

How to disable keyboard navigation in a Kendo UI TabStrip?

According to the documentation, I should be able to turn off keyboard navigation in a Kendo UI TabStrip widget by including "navigatable: false" in the widget configuration. However, I can't get this to work. I've made a boiled down (see below) that…
dcdruck
  • 53
  • 1
  • 5
4
votes
1 answer

how to activate second tab of Kendo UI tabstrip using angularJS

I'm basically new to Angular world. But trying hard to get the phase. What problem I now have is, how to access kendo tabstrip in my JS file and activate second tab onClick(). Please note I do not want to use selectors i.e., #tabStripID I'm trying…
Sammi
  • 109
  • 3
  • 11
3
votes
0 answers

kendo TabStrip is not working when i am clicking on kendo tabs it append the url

// this is my kendo strip code...... @(Html.Kendo().TabStrip() .Name("TabStripPatientHome") .Items(tabStrip => { tabStrip.Add() …
sonu bante
  • 31
  • 7
3
votes
2 answers

Scrollable Kendo Tabstrip when tabs overflow

Has anyone ever been able to get the Kendo tabstrip to scroll when there is a tab overflow? I can currently get the tab control to present a scroll bar at the bottom, but this is not the desired behavior because it moves the content as well. We…
DJ Burb
  • 2,346
  • 2
  • 29
  • 38
2
votes
1 answer

Kendo UI Tabstrip Onclick event

I am trying to have a onclick event when a button in second tab is clicked and it has to go to third tab. I have seen it in jquery but couldnt implement in TS with angular 4/6 import { Component } from '@angular/core'; @Component({ selector:…
Akarsh Kolanu
  • 136
  • 2
  • 4
  • 13
2
votes
1 answer

Blue border around Kendo Tabstrip

I have this annoying blue border around the Kendo Tabstrip whenever it is selected. Possibly something to do with aria? Does anyone know how to remove it?
mgh75
  • 77
  • 3
  • 11
2
votes
1 answer

Kendo mvc refresh one of the tabs in tabstrip

I`m using kendo for mvc. I have tabstrip with five tabs. @(Html.Kendo().TabStrip() .Name("tabstrip") .Events(builder => builder.Select("onSelect")) .Items(tabstrip => {…
Sveta Antrapovich
  • 407
  • 2
  • 7
  • 17
2
votes
2 answers

How to use select EventEmitter Angular 2 TabstripComponent

Please let me know the exact syntax for angular 2 tab on select event. I was trying something like as following : @Component({ selector: 'my-app', template: `
Karan Bir
  • 351
  • 4
  • 13
2
votes
0 answers

Kendo Tab Strip Event for AngularJS

I have following Tab
  • First tab
  • Second tab
ujjaval
  • 1,523
  • 4
  • 20
  • 35
2
votes
1 answer

Eager loading in Kendo Tabstrip

I'm using LoadContentFrom method of Kendo TabStrip, it allows tabstrip to load content from another action method. The content will be loaded only when user clicks the link, tab, therefore it causes a short delay that I'd like to avoid. I wasn't…
Akbari
  • 2,369
  • 7
  • 45
  • 85
2
votes
1 answer

How to add more than one image in the tabstrip (Kendo TabStrip)

Can anyone tell me if there's any way of adding more than one image in the Kendo tabStrip? (I do not want to add sprite, but two different images whose click event can be accessed differently.)
SE_User
  • 370
  • 4
  • 14
2
votes
1 answer

Kendo MVC Grid inside Kendo TabStrip

I have Kendo Tabstrip control place in a partial view and inside that tabstrip I have Kendo Grid. @(Html.Kendo().TabStrip() .Name("tabstrip1") .Items(ts => { …
2
votes
2 answers

Kendo Tabstrip tab with close button

I have a kendo tabstrip with close button. The problem is that I can't get the button click event to close that tab. @(Html.Kendo().TabStrip() .Name("test") .Items(tabstrip => { tabstrip.Add().Text("") .Selected(true) …
Ajith
  • 343
  • 2
  • 23
2
votes
1 answer

Is it possible to reorder Kendo Tabstrip tabs with drag and drop?

Is is possible to reorder the tabs with drag and drop (see Kendo Tabstrip basic mode here)? Similar to dragging tabs in Excel.
ps0604
  • 1,227
  • 23
  • 133
  • 330
1
2 3 4 5 6 7 8