dataSource.iconPositionString(default: "before")

Sets the position of the icon relative to the tab text. Possible values are before and after.

Example

<div id="tabstrip"></div>
<script>
    $("#tabstrip").kendoTabStrip({
        dataTextField: "text",
        dataContentField: "content",
        dataIconField: "icon",
        dataIconPositionField: "iconPosition",
        dataSource: [
          { text: "Home", icon: "home", iconPosition: "before", content: "Home content" },
          { text: "Settings", icon: "gear", iconPosition: "after", content: "Settings content" }
        ]
    });
</script>
In this article
dataSource.iconPosition
Not finding the help you need?
Contact Support