Rank: Newbie Groups: Member
Joined: 5/6/2009 Posts: 2
|
Hi, i'm Using the EO Menu's and when i trie to pass the items of one menu to another
"Menu1 = Menu2" , it doesn't pass any values.... the menu1 have like 10 items, and Menu2, 0, so my question is...
how i pass the items from a Menu to another (i'm not using DataSource, these are manualy inserted items)?
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
It won't be able to do that. "Menu1" and "Menu2" are just pointers. So setting the pointer does not copy the contents they are pointing to for you. The easiest way is for you to call the same function that build Menu1 on Menu2, so that Menu2 got build the same way as Menu1.
Thanks!
|