I have a tabstrip in a view and I want the default tab to load automatically, Ive tried .Selected and as you can see .SelectedIndex but the tab is never selected or loaded. Surely there is a way to make it load without a bunch of javascript.
<div class="col-9"> @(Html.Kendo().TabStrip() .Name("TabWorkflow") .Animation(false) .SelectedIndex(0) .Items(tab => { tab.Add().Text("Statuses").Enabled(Model.WorkflowId != 0).LoadContentFrom("Index", "WorkflowStatus", new { workflowId = Model.WorkflowId }); }) ) </div>