dataImageUrlField String

Sets the field of the data item that provides the image url of the menu items.

Example

<ul id="menu"></ul>
<script>
    $("#menu").kendoMenu({
        dataSource: {
        data: [{
                Name: "Item 1",                
                imgUrl: "https://demos.telerik.com/kendo-ui/content/shared/icons/sports/golf.png"
            }]
        },
        dataTextField:"Name",            
        dataImageUrlField:"imgUrl"
    });
</script>
In this article