This question is locked. New answers and comments are not allowed.
Hi all
I have a DIV section which is filled up with content via AJAX calls.
How can I use/call the method .LoadContentFrom to read the content inside my DIV and open a popup window?
Here is some code:
Thank you
I have a DIV section which is filled up with content via AJAX calls.
How can I use/call the method .LoadContentFrom to read the content inside my DIV and open a popup window?
Here is some code:
<a href="#" onclick="loadChartTop()">Load chart top</a><div id="resultChartTop"></div>...function loadChartTop(context) { $('#resultChartTop').load('@Url.Action("_ChartTop", "Home")');}@(Html.Telerik().Window() .Name("WindowTopGraph") .Visible(false) .Scrollable(true) .Title("Top Graph") .Draggable(true) .Resizable(resizing => resizing .Enabled(true) .MinHeight(250) .MinWidth(250) .MaxHeight(1500) .MaxWidth(1500) ) .Modal(false) .Buttons(b => b.Maximize().Close()) .LoadContentFrom(?????????????????) .Width(1200) .Height(400))