Rank: Newbie Groups: Member
Joined: 5/6/2009 Posts: 2
|
Hi, I have the slidemenu in a masterpage. I want to keep the selected item in the slidemenu active. How can I select a item in the slide menu other than SlideMenu1.Items[x].selected = true. Can I select an item with the itemvalue property?
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi, You will always need to get the menu item first, then set its Selected to true. SlideMenu1.Items[x] is just one way for you to get a menu item. You can use these method to get menu item(s): http://doc.essentialobjects.com/library/1/eo.web.basenavigator.finditem.aspxhttp://doc.essentialobjects.com/library/1/eo.web.basenavigator.searchitems_overloads.aspxThanks
|