Ho provato l'helper MVC e il visualizzatore HTML5 standard. Sono curioso di sapere se qualcuno è stato in grado di caricare con successo un rapporto contenente parametri utilizzando i nuovi spettatori. Non riesco a ottenere alcun feedback da Telerik.Telerik Reporting parametri del passaggio HTML5
@{
var report = new UriReportSource() { Uri = "TestReport.trdx" };
report.Parameters.Add(new Telerik.Reporting.Parameter() { Name="UserId", Value=1234 });
report.Parameters.Add(new Telerik.Reporting.Parameter() { Name = "UserName", Value = "Test User" });
}
@(Html.TelerikReporting().ReportViewer()
.Id("reportViewer1")
.ServiceUrl("/api/reports/")
.TemplateUrl("/ReportViewer/templates/telerikReportViewerTemplate.html")
.ReportSource(report)
.ViewMode(ViewModes.INTERACTIVE)
.ScaleMode(ScaleModes.SPECIFIC)
.Scale(1.0)
.PersistSession(false)
)
Ho chiesto loro anche questo, e mi hanno fatto riferimento alla documentazione che purtroppo non ha spiegato questo. – MiBu
Lo stesso qui, mi ha bloccato per 3 giorni. chiedendo forse si può aggiornare con la risposta? – reptildarat
Hai già trovato la soluzione? –