dataImageUrlField String
(default: null)
Sets the field of the data item that provides the image URL of the PanelBar nodes.
Example - specify custom image URL field
<ul id="panelbar"></ul>
<script>
var items = [
{ text: "Baseball", image: "https://demos.telerik.com/kendo-ui/content/shared/icons/sports/baseball.png" },
{ text: "Golf", image: "https://demos.telerik.com/kendo-ui/content/shared/icons/sports/golf.png" }
];
$("#panelbar").kendoPanelBar({
dataImageUrlField: "image",
dataSource: items
});
</script>