I am not able to highlight selected tab in TabMenu control. I added event for OnItemClick but it is not getting called on all items.. The example below does not work on my site.
<telerik:RadMenu ID="Menu1" Runat="server" DataFieldID="ID" Skin="MyCustomNav"
DataFieldParentID="ParentID" DataNavigateUrlField="Url"
DataSourceID="ObjectDataSource" DataTextField="Text" DataValueField="Url"
EnableEmbeddedSkins="false" OnItemClick="TabMenu_ItemClick">
<DataBindings>
<telerik:RadMenuItemBinding ToolTipField="ToolTip" />
</DataBindings>
</telerik:RadMenu>
<asp:ObjectDataSource ID="ObjectDataSource" runat="server"
OldValuesParameterFormatString="original_{0}" SelectMethod="GetSiteMenu"
TypeName="Sample.LinksHelper">
</asp:ObjectDataSource>
I noticed that "TabMenu_ItemClick" get called only when I have no value for "Url" property. If this has any value then clicking on the a tab or subtabs does not invoke the TabMenu_ItemClick method. Any help is appreciated.
<telerik:RadMenu ID="Menu1" Runat="server" DataFieldID="ID" Skin="MyCustomNav"
DataFieldParentID="ParentID" DataNavigateUrlField="Url"
DataSourceID="ObjectDataSource" DataTextField="Text" DataValueField="Url"
EnableEmbeddedSkins="false" OnItemClick="TabMenu_ItemClick">
<DataBindings>
<telerik:RadMenuItemBinding ToolTipField="ToolTip" />
</DataBindings>
</telerik:RadMenu>
<asp:ObjectDataSource ID="ObjectDataSource" runat="server"
OldValuesParameterFormatString="original_{0}" SelectMethod="GetSiteMenu"
TypeName="Sample.LinksHelper">
</asp:ObjectDataSource>
I noticed that "TabMenu_ItemClick" get called only when I have no value for "Url" property. If this has any value then clicking on the a tab or subtabs does not invoke the TabMenu_ItemClick method. Any help is appreciated.