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
Check that Tab control Autopostback property is True, It should be True to raise the Tab Click event.
Thanks