I know how to add an menu item to an existing item but I would like to know how to add an item to the menu root.
Here's the code I have so far:
var MainMenu = $("#MainMenu").kendoMenu({ animation: { open: { effects: "fadeIn" }, close: { effects: "fadeIn" } }});MainMenu.append({ text: "New Root Item" }, MainMenu);