New to Kendo UI for jQueryStart a free 30-day trial

Sets the dataSource of an existing tabstrip and rebinds it.

Parameters:dataSourceObject|Array|kendo.data.DataSource
<div id="tabstrip">
</div>

<script>
  $("#tabstrip").kendoTabStrip({
    dataContentField: "content",
    dataTextField : "label"
  })
  var dataSource = kendo.data.DataSource.create([
    { label: "Label", content: "Content" }
  ])

  $("#tabstrip").data("kendoTabStrip").setDataSource(dataSource);
</script>
Not finding the help you need?
Contact Support