or
@(Html.Kendo().TabStrip() .Name("inst_details_tabstrip") .Items(tabstrip => { tabstrip.Add().Text("Details").Content(@<text>@Html.Action("InstitutionDetails", "InstitutionSetup")</text>); tabstrip.Add().Text("Locations").Content(@<text>@Html.Action("ServiceLocations", "InstitutionSetup")</text>); tabstrip.Add().Text("Devices").Content(@<text>@Html.Action("Printers", "InstitutionSetup")</text>); tabstrip.Add().Text("Users").Content(@<text>@Html.Action("UserList", "InstitutionSetup")</text>); }))var tabstrip = $("#inst_details_tabstrip").data("kendoTabStrip");tabstrip.select(tabstrip.tabGroup.find(':contains("Users")'));var item = tabstrip.items()[3];tabStrip.reload(item);public class NullableFkModel{ [ScaffoldColumn(false)] public int Id { get; set; } public string Name { get; set; } [UIHint("Fk")] public int? FkId { get; set; }}@model int?@(Html.Kendo() .ComboBoxFor(m => m) .DataValueField("Value") .DataTextField("Text") .BindTo(new [] { new SelectListItem() { Text = "Joe Blow", Value = "1"}, new SelectListItem() { Text = "Jane Doe", Value = "2"}, new SelectListItem() { Text = "Batman", Value = "3"}}) .Filter(FilterType.Contains))@(Html.Kendo() .Grid<NullableFkModel>() .Name("Grid") .Columns(columns => { columns.Bound(item => item.Name); columns.Bound(item => item.FkId); columns.Command(command => command.Edit()); }) .DataSource(ds => ds.Ajax() .Model(model => model.Id(m => m.Id)) .Read(read => read.Action("Nullable_Read", "Demo")) .Create(create => create.Action("Nullable_Create", "Demo")) .Update(update => update.Action("Nullable_Update", "Demo")) ) .ToolBar(commands => commands.Create()) .Editable(edit => edit.Mode(GridEditMode.PopUp)))