Hello,
We have a Win Forms project with a Telerik Report and at the same project we have a Form where we added the report viewer. What we want to do is to get the item collection of the Report to our main Form and change their values before we display the report at the viewer.
Thanks in advance for your time.

Ok, admittedly, I haven't worked on this project for at least 3-4 years... However, a recent discovery of a bug means I need to modify some reports. We have got version 9.1.14.624 with no option to update.... Now when trying to run a report in debugger IIS Express we get the following error and reporting just halts and dies...rendering the product completely useless to us...
TypeError: Failed to execute 'initStorageEvent' on 'StorageEvent': parameter 8 is not of type 'Storage'.
at setItem (c:\projects\stable\touchretail.trims.hub\reportviewer\js\telerikreportviewer-9.1.15.624.js:3531:27)
at value (c:\projects\stable\touchretail.trims.hub\reportviewer\js\telerikreportviewer-9.1.15.624.js:3540:18)
at Object.clientId (c:\projects\stable\touchretail.trims.hub\reportviewer\js\telerikreportviewer-9.1.15.624.js:3592:25)
at setClientId (c:\projects\stable\touchretail.trims.hub\reportviewer\js\telerikreportviewer-9.1.15.624.js:527:31)
at Object.<anonymous> (c:\projects\stable\touchretail.trims.hub\reportviewer\js\telerikreportviewer-9.1.15.624.js:547:18)
at i (c:\projects\stable\touchretail.trims.hub\scripts\jquery-2.2.0.min.js:2:27066)
at Object.fireWith [as resolveWith] (c:\projects\stable\touchretail.trims.hub\scripts\jquery-2.2.0.min.js:2:27829)
at z (c:\projects\stable\touchretail.trims.hub\scripts\jquery-2.2.0.min.js:4:11828)
at XMLHttpRequest.<anonymous> (c:\projects\stable\touchretail.trims.hub\scripts\jquery-2.2.0.min.js:4:15388)
How to fix this please? We've not changed our code for donkeys years, so why would this stop working all of a sudden?

Hello,
I am trying to pass two date parameters to my query in Query designer but i getting below progress error
ERROR[22001][DataDirect][ODBC Progress Openedge Wire Protocol driver]String data, right truncated.Error in parameter 3.
Whereas it is working for other data types like character, integer and logical.kindly help me to resolve this issue

I have an MVC application with a single page to render numerous reports based on user selection. On the load of the page, no report is rendered until the users selects the desired report and sets some custom parameter controls then clicks a button to run the report. In the button event handler, I am collecting the parameters and using $('#reportViewer1').telerik_ReportViewer(...); to display the report. This works perfectly for the first run, but subsequent runs fail to reload the report, regardless of the parameter values changing.
I have tried to test for the existence of the reportviewer as below but this didn't do the trick either. Is there a way for me to reuse the reportviewer or destroy it and start fresh each time?
var reportViewer = $("#reportViewer1").data("telerik_ReportViewer"); if (reportViewer !== undefined) { reportViewer.reportSource({ report: "Website.Reports.ParameterCheck, Website", parameters: { ... } }); } else { $('#reportViewer1').telerik_ReportViewer({ serviceUrl: "/api/reports/", templateUrl: "../Reports/telerikReportViewerTemplate-FA.html", //AuthenticationToken: "myToken", viewMode: telerikReportViewer.ViewModes.INTERACTIVE, scaleMode: telerikReportViewer.ScaleModes.SPECIFIC, scale: 1.0, reportSource: { report: "Website.Reports.ParameterCheck, Website", parameters: { ... } }, ready: function () { alert("refreshing"); this.refreshReport(); } }); }
Prerequisites:
Test Case:
Expected: MultiSelect should display fine besides Telerik Report.
Actual: MultiSelect Displayed with corrupted style.
You can check and review my screen shoots for packages used and multiselect with report and without display.


Hi, I'm using Telerik.Reporting, Version = 11.1.17.614. I'm looking for examples of 'Table of Content 'in telerik. I can't find any example of how to use the 'Table of Content' on the pages you refer. How is the 'Table of Content' structure prepared? How is it included in the report? Is it possible for you to share an example project? There is a demo on these page (https://docs.telerik.com/reporting/table-of-contents , https://demos.telerik.com/reporting/report-book) , but no code is available. Could you share sample code on 'Table of Content'?