or
I am displaying a Telerik report in a Telerik MVC popup window which is instantiated in client-side code. Everything works fine the first time -- the report appears normally.
But if the window is closed (as it will be) and the user clicks for a second time the button on the page that opens the popup, the popup opens but no report content appears. Here is the client code:
$(document).ready(function () { $('#printButton').click(function () { var printPopup = $.telerik.window.create({ title: "Resident Account Report", contentUrl: '/myApp/ReportPages/ReportPage.aspx' + '?rpt=myReport&ID=' + @Model.id, actions: ["Refresh", "Maximize", "Close"], height: 600, width: 1100, modal: true, resizable: true, draggable: true, scrollable: false, onRefresh: function () { var myWindow = $(this).data('tWindow'); myWindow.center().open(); } }); }); }); 
<p style="margin: 0px 0px 0px 0px;text-align: left;text-indent: 0pt;padding: 0px 0px 0px 0px;"><span style="font-family: 'MS Sans Serif';font-style: normal;font-size: 11px;color: #000000;background-color: #FFFFFF;">Test for the missing </span><span style="font-family: 'MS Sans Serif';font-weight: bold;font-size: 11px;color: #000000;background-color: #FFFFFF;">character</span><span style="font-family: 'MS Sans Serif';font-style: normal;font-size: 11px;color: #000000;background-color: #FFFFFF;"> at the end of a bold span</span></p> DefaultCertificate applicantCertificate = new DefaultCertificate(); applicantCertificate.DataSource = application.GetCertificateDetails(applicantID, applicationYear);//something to do the following?applicantCertificate.Template = "location of template trdx file";