dataSpriteCssClassField String (default: null)

Sets the field of the data item that provides the sprite CSS class of the nodes. If an array, each level uses the field that is at the same index in the array, or the last item in the array.

Example

Open In Dojo
<style>
    #panelbar .k-sprite {
        background-image: url("https://demos.telerik.com/kendo-ui/content/shared/styles/flags.png");
    }
</style>
<ul id="panelbar"></ul>
<script>
var items = [
  { text: "Brazil", sprite: "brazilFlag" },
  { text: "India", sprite: "indiaFlag" }
];
$("#panelbar").kendoPanelBar({
  dataSpriteCssClassField: "sprite",
  dataSource: items
});
</script>
In this article