Hmm.. I get the error "Command item already belongs to a control".
This is the situation: I have the following menu item (hard coded in the ASPX page):
Code: HTML/ASPX
<TopGroup>
<Items>
<eo:MenuItem Width="250">
<CustomItem>
<div style="width:250px;">
Content of my custom item
</div>
</CustomItem>
</eo:MenuItem>
</Items>
</TopGroup>
In C#, I add some menu items at runtime. These are by default located after the hard coded menu item above. What I want is the menu items added at runtime to be located before the hard coded item above.
Example: I add 5 menu items at runtime. The hard coded menu item above should then be item number 6.
Thank you.
HT