Hi,
I have defined a RadMenu in a Master Page which loads its content from an XML.
When I login from a Default.aspx, if successful login it loads the Savings Page ; SC.aspx which is called within this MasterPage.
My problem is that :
1. the Savings Item on the RadMenu is not "hilighted" - a state to show that the current page is the "Savings" page (something i saw in the various demo). I expect to see the current page to be "hilighted".
2. When i click on another Page on the Menu, it navigates to the other page and again the Clicked Menu is not hilighted after it's loaded.
How can i achieve the hilighted items if i'm on the page?
Thanks for your help
I have defined a RadMenu in a Master Page which loads its content from an XML.
When I login from a Default.aspx, if successful login it loads the Savings Page ; SC.aspx which is called within this MasterPage.
My problem is that :
1. the Savings Item on the RadMenu is not "hilighted" - a state to show that the current page is the "Savings" page (something i saw in the various demo). I expect to see the current page to be "hilighted".
2. When i click on another Page on the Menu, it navigates to the other page and again the Clicked Menu is not hilighted after it's loaded.
How can i achieve the hilighted items if i'm on the page?
Thanks for your help
<telerik:RadMenu ID="rmMainNav" runat="server" Skin="GMSkin" EnableEmbeddedSkins="false" DataSourceID="dsMainNavXML" DataTextField="title" DataNavigateUrlField="url" DataValueField="title" OnItemClick="RadMenu_ItemClick" Width="100%"> </telerik:RadMenu><?xml version="1.0" encoding="utf-8" ?><menu> <item url="#" title=" " description=" " /> <item url="../Pages/SC.aspx" title="Savings" description="Savings" /> <item url="../Pages/SL.aspx" title="Shopping" description="Shopping" /> <item url="../Pages/BI.aspx" title="Items" description="Items" /> <item url="../Pages/FD.aspx" title="Deals" description="Deals" /> <item url="../Pages/MP.aspx" title="Profile" description="Profile" /></menu>