I am trying to select a tab in javascript when I only know the Text in the tab
I know to get the selected tab, I do this:
var tabStrip = $("#tabMain").data("kendoTabStrip"); var tab = tabStrip.select();
How to make the selected tab be the same with the text "MyTitle"
Note. I am creating a tab with MVC 4
@(Html.Kendo().TabStrip() .Name("tabMain") .Items(items => { items.Add().Text("MyTitle")
source share