Kendo TabStrip: rendering actions on the MVC 4 tab

I am trying to render and Action @ Html.RenderAction (...) in the .Text () of the Kendo tab without success.

Is there a way to do the full action on a tab?

+4
source share
1 answer

I found him:

@(Html.Kendo().TabStrip() .Name("tabMain") .Items(items => { items.Add() .Text("My Tab Title") .Content(Html.Action("Index","MyChildController").ToString()); }) ) 

Trick - Call .ToString in a call to Html.Action .

+9
source

All Articles