iconUrlTemplate

iconUrlTemplate - Specifies the mapping between the icon url column in the datasource and
the tab icon url and also may define a visualization template. It may be a string value or a function.


<script type="text/javascript">
    $(function () {
        $("#tabs").shieldTabs({
            iconUrlTemplate: "{iconUrl}",
            dataSource: {
                 data: [
                     { title: "Tab1", iconUrl: "/Content/Tab1Image.png", content: "Tab1 content" },
                     { title: "Tab2", content: "Tab2 content" },
                 ]
            }
        });
    });
</script>