Kendo TabStrip: Passing the Parent Model to the ChildAction in MVC 4

donitaz

New Member
I have a Kendo UI Tab Strip in MVC 4 defined:\[code\]@model SearchUserModel@(Html.Kendo().TabStrip() .Name("tabMain") .Items(items => { items.Add() .Text("Search") .Content(Html.Action("Form","SearchUser").ToString()).Selected(true); items.Add() .Text("Manage User") .Action("Index", "ManageUser"); }) .Animation(false) )\[/code\]The ChildAction "Form" is on the same Controller "SearchUser" as this parent. Question: How do I pass the parent's SearchUserModel to the "Form"/"SearchUser" ChildAction?
 
Back
Top