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):
I believe I need to get a reference to the current tab, then check if the tab being deleted is the active tab.
My code at the moment simply closes the tab in relation to the clicked image:
function DeleteTab(imgObj) {
var tabStrip = $("#tabstrip").data("kendoTabStrip");
var deleteIndex = $(imgObj).closest("li").index();
tabStrip.remove(deleteIndex);
}
How do I get a reference to the currently selected tab? Can I do this by searching for k-state-active
?
tabstrip.select()
will return the currently selected tab.