[SOLVED] I need your support to tell me what is the procedure to see a report Telerik REST service, report.cs?

Answered
0
0
  • You must to post comments
Best Answer
0
0

See https://wisej.com/support/question/integration-of-report-telerik-within-wisej

You need to follow the instructions from Telerik.

  • You must to post comments
0
0
I thank you very much for your support and your time, I already managed to observe a report in Report.cs format, in reality it was just something very simple, the error that I was committing was the following:
In the data of the reportViewer it only put the name of the file of the report:

 reportSource: {report: 'rptEmpleados.cs'}

Investigating and as you did me please send me the example was only necessary to indicate the identification of (resolve):
reportSource: {report: 'AspNetAuthentication.Reports.rptEmpleados, AspNetAuthentication, Version = 1.0.0.0, Culture = neutral, PublicKeyToken = null'} 

And it works perfectly well: 

this.init = function (options) {     // your initialization code.          
this.reportViewer = $ (this.container)         .telerik_ReportViewer ({             serviceUrl: '/ api / reports',             reportSource: {report: 'AspNetAuthentication.Reports.rptEmpleados, AspNetAuthentication, Version = 1.0.0.0, Culture = neutral, PublicKeyToken = null'},             scaleMode: telerikReportViewer.ScaleModes.SPECIFIC,             scale: 1.0,             viewMode: 'INTERACTIVE',         }). data ("telerik_ReportViewer"); } Thank you very much (Luca (ITG)).
  • You must to post comments
Showing 2 results
Your Answer

Please first to submit.