dataSource.iconString
(default: "")
Тhe name for an existing icon in a Kendo UI theme or SVG content. The icon is rendered inside the tab element.
See web icons help article for more details on Kendo UI icons.
Example
<div id="tabstrip"></div>
<script>
$("#tabstrip").kendoTabStrip({
dataTextField: "text",
dataContentField: "content",
dataIconField: "icon",
dataSource: [
{ text: "Home", icon: "home", content: "Home content" },
{ text: "Settings", icon: "gear", content: "Settings content" }
]
});
</script>
In this article