We are trying to perform some code when the user clicks on a tab in the tab strip. However, we also want to execute the same code when the user clicks on a tab that is already selected. The TabClick event (see below) is not capturing it, is there another event that we need to bind to?
ASP.NET Code
<telerik:RadTabStrip ID="RadTabStrip1" OnTabClick="RadTabStrip1_TabClick" runat="server" MultiPageID="RadMultiPage1" SelectedIndex="0" Skin="Office2007" Style="padding-left: 50px;" ShowBaseLine="true">
C# code
protected void RadTabStrip1_TabClick(object sender, RadTabStripEventArgs e)
{
//do something
}