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?
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 .