dataContentField String
(default: "")
Sets the field of the data item that provides the text content of the tab content element.
Example
<div id="tabstrip"></div>
<script>
$("#tabstrip").kendoTabStrip({
dataTextField: "Name",
dataContentField: "Content",
dataSource: [
{ Name: "Tab1", Content: "Tab1: content" },
{ Name: "Tab2", Content: "Tab2: content" }
]
});
</script>