[SOLVED] Integration of report telerik within Wisej?

Answered
0
1
There is integration of report telerik within Wisej?
  • You must to post comments
Best Answer
0
0

You don’t need any special integration. Just use Wisej.Web.Widget to include the Telerik HTML5 ReportViewer. Follow the instruction on Telerik’s documentation for the HTML5 viewer. See attached sample, it used their demo server. You can change it to use your Telerik reporting server.

 

  • 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
0
0
Will you have an example of a REST report in Report.cs format?
  • Luca (ITG)
    The example I have attached is from the Telerik web site and their demo page. I don’t have the library nor the report source. I simply used their script in their demo page. The attached sample should be a great starting point – the rest is all Telerik.
  • You must to post comments
0
0
I think it's excellent if it's that simple to incorporate it, thank you very much
  • You must to post comments
0
0
Sorry, the example appeared just like the image, thank you very much
  • You must to post comments
0
0
The example that I attached Wisej.TelerikReportViewer does not have the sample report that it shows in the Image.png, I would really appreciate if you send it to me with that example please.
  • You must to post comments
Showing 6 results
Your Answer

Please first to submit.