This question is locked. New answers and comments are not allowed.
Why doesnt this LoadContentForm load my view into the popup window?
I have the action and controller specified. Is there another way to do this?
@{ Html.Telerik().Window()
.Name(
"Window")
.LoadContentFrom(
"Index","Wizard")
.Title(
"Wizard")
.Width(400)
.Draggable(
true)
.Modal(
true)
.Visible(
false)
.Render();}