Hello,
I'm new to the Kendo UI stuff, so please forgive me if this is an easy one;
I want to load the partial view inside the Kendo window, how i can do that? I tried as shown in below but it is showing the blank window. could any one please help me.
@(Html.Kendo().Window()
.Name("windowEditPopup")
.Title("Edit pricing")
.Content(@<text>
<div>
@{
Html.RenderPartial("EditPricingControl", Model);
}
</div>
</text>)
.Draggable()
.Animation(true)
.Resizable()
.Modal(true)
.Width(800)
.Height(450)
)
Regards,
Ravi.
I'm new to the Kendo UI stuff, so please forgive me if this is an easy one;
I want to load the partial view inside the Kendo window, how i can do that? I tried as shown in below but it is showing the blank window. could any one please help me.
@(Html.Kendo().Window()
.Name("windowEditPopup")
.Title("Edit pricing")
.Content(@<text>
<div>
@{
Html.RenderPartial("EditPricingControl", Model);
}
</div>
</text>)
.Draggable()
.Animation(true)
.Resizable()
.Modal(true)
.Width(800)
.Height(450)
)
Regards,
Ravi.