dataSource.textString
(default: "")
The display text of the tab. This is the text that will be shown in the tab header.
Example
<div id="tabstrip"></div>
<script>
$("#tabstrip").kendoTabStrip({
dataTextField: "text",
dataContentField: "content",
dataSource: [
{ text: "Tab 1", content: "Tab 1 content" },
{ text: "Tab 2", content: "Tab 2 content" }
]
});
</script>
In this article