dataUrlField String
(default: "")
Sets the field of the data item that provides the link URL for the tab.
Example
<div id="tabstrip"></div>
<script>
$("#tabstrip").kendoTabStrip({
dataTextField: "Name",
dataUrlField: "Url",
dataSource: [
{ Name: "Telerik", Url: "https://www.telerik.com" },
{ Name: "Google", Url: "https://www.google.com" }
]
});
</script>