itemTemplate String|Function

Specifies a custom template for the menu items.

Example

<button id="dropDownButton">Click me!</button>
<script>
    $("#dropDownButton").kendoDropDownButton({
        items: [
            { text: "Item 1" },
            { text: "Item 2" },
            { text: "Item 3" }
        ],
        itemTemplate: "<span class=\"k-link k-menu-link\"><strong>#:text#</strong></span>"
    });
</script>
In this article