Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
180
ontabclick Event in webtab
posted

Hi, 

    I want to write some  server side codings for ontabclick event. I have done similar to this:

In aspx page: 

 <igtab:UltraWebTab ID="Tab1" runat="server" DisplayMode="SingleRow"
            SpaceOnLeft="0" TabOrientation="TopLeft" ontabclick="Tab1_TabClick" SelectedTab="0">

In aspx.cs page:

 protected void Tab1_TabClick(object sender, Infragistics.WebUI.UltraWebTab.WebTabEvent e)
{
      if (e.Tab.Key.ToString().ToUpper() == "Tab1Name")
      {
      }
}

But for me the event is not triggering .How can i do this?

 

Regards,

Jawahar