Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
MVC 3のKendoUI内で、タブのコンテンツとして各タブの部分ビューを追加する必要があります。
これはどのように行われるのですか、ドキュメントは方法を示していないようです。
@{ var partialData = Html.Partial("/Views/Templates/_p_myView.cshtml"); } @(Html.Kendo().TabStrip() .Name("Contents from partital") .Items(tabstrip => { tabstrip.Add().Text("Hello Partial") .Content(partialData .ToString()); }) )