iconPositionString
(default: "before")
Specifies the position of the icon in the Menu items using the text content as a reference. The available options are:
before
- the icon is positioned before the textafter
- the icon is positioned after the text
Example
<ul id="menu"></ul>
<script>
$("#menu").kendoMenu({
iconPosition: "after",
dataSource: [
{ text: "Item 1", icon: "gear" },
{ text: "Item 2", icon: "pencil" }
]
});
</script>
In this article