具有动态路由值的LoadContentFrom

时间:2013-07-10 20:51:17

标签: dynamic kendo-ui

是否可以在Kendo UI标签LoadContentFrom(string ActionName, string ControllerName, Object routeValues)方法中指定动态路线值?我想将tabtrip嵌入到一个页面中,该页面将显示不同的客户并通过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

0 个答案:

没有答案