I am using the tabstrip and wondering how to catch the selected tab in the Select event
My pseudo code looks like :
.ClientEvents(events => events.OnSelect(() => { %> function(e) {
if (SelectedTab == "Tab-3" )
doSomething();
}
<%
}
)
Here I don't know how to access the Selected Tab
I am used to jQuery UI Tabs and there fonction events have two parameters
function(event, ui)
{
if (ui.index == 3)
doSomething()
}
Thank you for your help