dataIconFieldString
(default: "icon")
Sets the field of the data item that provides the icon for the tab.
Example
<div id="tabstrip"></div>
<script>
$("#tabstrip").kendoTabStrip({
dataTextField: "Name",
dataIconField: "Icon",
dataSource: [
{ Name: "Tab1", Icon: "gear" },
{ Name: "Tab2", Icon: "pencil" }
]
});
</script>
In this article