I've defined kendoTabStrip component as follow:
const tools = $("#id-tools").kendoTabStrip({
animation: false,
collapsible: true,
tabPosition: "left",
select: tools_select
}).data("kendoTabStrip");
The following event occurs when tab Expand/Collapse:
function tools_select(e) {
console.log(e.item. ??? );
}
How do I get the info via "e" parameter if the tab is Expand/Collapse?
Using jquery you can check if the element
.hasClass("k-state-active")