contentTemplate

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


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