Hi All,
I would like a button click on my page to programattically open a tab.
I would like a button click on my page to programattically open a tab.
// bind event for button
$("#btnShowMyTab").click( function(e) {
var tabstrip = $("#informationTabstrip").kendoTabStrip().data("kendoTabStrip");
var myTab = tabstrip.tabGroup.children("li").eq(2);
// activate fact tab
tabstrip.select(myTab);
});
The problem I am having is that for a split second, the tab I want to see shows up, but it is immediately replaced by whichever tab was open before I clicked the button. The open tab I want does not stay open.
Does anyone see anything wrong with my click event ?
Thank you,
Kim