itemClsTemplate

itemClsTemplate - Specifies the mapping between the item cls column in the datasource and
the tab style class and also may define a visualization template. It may be a string value or a function.


<script type="text/javascript">
    $(function () {
        $("#tabs").shieldTabs({
            itemClsTemplate: "{itemCls}",
            dataSource: {
                 data: [
                     { title: "Tab1", itemCls: "tabItem", content: "Tab1 content" },
                     { title: "Tab2", content: "Tab2 content" },
                 ]
            }
        });
    });
</script>

<style>
   .tabItem {
        color: blue;
   }
</style>