Click here to Skip to main content
15,881,715 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi All,

I am very newbie in Kendo with angular.js
I am working on kendo tabstrip, being populated with data, using angular code. I have been given a task where I need to change the value of a dropdown control.

I understood that all the grids in all the tabs are being loaded initially, all at a time. But, I cannot understand how the data is getting switched when am clicking on any tab in tabstrips. I can see that the "display" css property is getting changed for the respective tab when I click on any tab, but I cannot find any code written for that, anywhere.

Can somebody please help me to understand how kendo tabstrip is works internally? How come no code is being hit when I switch between different tabs in tabstrip?

What I have tried:

I tried creating a function for the same and calling that function on ng-click of those tabs. But, I would like to know if there is any other simple way out?
Posted
Updated 16-May-19 1:01am

1 solution

There are events, one of them is tabSelect - bind to it so receive notification (and do some code) when user switches between tabs...
HTML
<kendo-tabstrip (tabSelect)="onTabSelect($event)">

TabStripComponent - Layout API - Kendo UI for Angular[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900