XtraReports Web Viewer not loading Parameters Popup
- by Jan de Jager
So were loading a a report from a saved file (this seems to not be the general way to do things), but the report viewer refuses to initialise the parameters popup. WTF!!!
Here's the code:
protected void Page_Load(object sender, EventArgs e)
{
string ReportName = Request["ReportName"];
XtraReport newReport = CreateReportFromFile(ReportName);
newReport.RequestParameters = true;
ReportViewerControl1.Report = newReport;
}
private XtraReport CreateReportFromFile(string filePath)
{
XtraReport report = new XtraReport();
report = XtraReport.FromFile(filePath, true);
return report;
}