MVC4でKendoUIタブストリップを定義しています:
@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)
)
ChildAction "Form"は、この親と同じコントローラー"SearchUser"にあります。
質問:親のSearchUserModelを "Form" / "SearchUser" ChildActionに渡すにはどうすればよいですか?