Rank: Member Groups: Member
Joined: 11/9/2007 Posts: 15
|
Hello such, someone knows how to get the last menu of a slidemenu what happens is that I have a slidemenu which it generates adding nodes across a query, and when you do click on any menu again generate with other data and always Finally add a menu that is to return to the previous menu but do not like in this case or put a button for regresarme the original menu
Thanks
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi, I am not sure if I get your question...but if you want to add an item to the menu, you create a menu item and call Add. See a sample at here: http://www.essentialobjects.com/Demo/Default.aspx?path=Menu\menu_programming\_i1\_i0You can do that after you populated from the query. For example:
Code: C#
Menu1.DataSource = your_data_source;
Menu1.DataBind();
Menu1.Items.Add(new EO.Web.MenuItem("some item"));
Thanks
|