是否可以在 Kendo UI tabstrip 方法中指定动态路由值LoadContentFrom(string ActionName, string ControllerName, Object routeValues)
?我想将标签条嵌入到一个页面中,该页面将显示不同的客户并通过 AJAX 更改客户数据(包括 ID)。这意味着我的标签条仅适用于第一个客户。
@Code
Html.Kendo().TabStrip() _
.Name("tabstrip") _
.Items(Sub(tabstrip)
tabstrip.Add().Text("Tasks") _
.Selected(True) _
.LoadContentFrom("List", "Task", New With {.CustomerID = Model.CustomerID})
tabstrip.Add().Text("Contacts") _
.LoadContentFrom("List", "Contact", New With {.ContactID = Model.CustomerID}) _
.Render()
End Code