Hi Craig,
Please, try inserting the item in the DataBound event. That's when all items are already created and their position in the menu item array is stable.
protected void RadMenu1_DataBound(object sender, EventArgs e) |
{ |
RadMenuItem firstItem = new RadMenuItem("first item"); |
RadMenu1.Items.Insert(0, firstItem); |
} |
Best wishes,
Peter
the Telerik team