Rank: Member Groups: Member
Joined: 10/31/2007 Posts: 18
|
I'm trying to change the forecolor of the selected menu item... I've tried to do it in javascript... and also VB code-behind... no luck... yet?
Dim menu As New EO.Web.MenuItem("Menu1") menu.SelectedStyle.ForeColor = System.Drawing.Color.Red
Leaving it as selected would be ok, too... (can't figure that out either)... I want the user to be able to see which menu item was last selected... I thought turning it red is best.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
menu.SelectedStyle.ForeColor = System.Drawing.Color.Red
Is the correct code. But I am not sure about:
Dim menu As New EO.Web.MenuItem("Menu1")
The code as it is probably won't work because setting it on a newly created menu item in the air wouldn't have anything to do with your existing menu. To change your existing menu, you would need to set it on your existing menu. Two more notes:
1. You can set it either on an individual menu item or a look item. For more information about look item, please check the documentation;
2. Setting SelectedStyle alone is not enough. You also need to set the menu item's Selected to true.
Thanks
|