5 Answers, 1 is accepted
Hello Don,
The Telerik MVC Window component provides a way to browse external pages by setting a single LoadContentFrom property. This allows users to browse additional, external content while remaining within your application. Here is an example: http://demos.telerik.com/aspnet-mvc/window/ajax.
Best regards,Rumen
Telerik by Progress
I guess I should clarify what I'm trying to do here. I need to load a URL in a modal dialog. Our app is a mixture of ASP Dot Net and MVC. (Don't ask, it's a long story) I am in a view and need to load an ASPX page in the modal dialog. I've tried a couple of other technologies to accomplish this but JQuery keeps getting stepped on and the dialog always loads in-line. I am sort of seeing the same thing with the Kendo control but want to make sure I have this set up correctly. I'm just using a basic window to get things going before I start in on the dynamic load but even this comes up in-line.
Window Definition @(Html.Kendo().Window() .Name("TaskDetailsWindow") .Title("Task Details") .Content("loading task details...") .Modal(true) .Iframe(true))Open the window function openTaskDetails(url) { $("#TaskDetailsWindow").data("kendoWindow").open(); return false; }Hello Don,
The following online resources could help:
http://stackoverflow.com/questions/17281582/how-to-set-loadcontentfrom-kendo-window-in-run-time
Yes, the window modality is controlled only via Modal(true) setting -> video demo: http://screencast.com/t/ItVyE2opjmrS.
Best regards,
RumenTelerik by Progress
