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'?
Hi everyone,
I need to create a report, and i need to add a picture with full width size of the report itself and underneath it i need to add a list of items. This list must not overflow in another page, so the table must be on the same page. Using the pagesettings -> columncount option of the report i can archieve this, but the picture has to be contained in the same "column body" of the report. Is there a component that allows me to create a single table list that overflows the elements on the same page (divided by columns like the pagesettings described above)? How can i archieve this?
Regards, Francesco

Hi,
Is it possible to export a report to excel using a sqldatasource, without considering the layout , groupings we have drawn inside the telerik report designer.
We need to use a same report to export both pdf and Excel. But in Excel we dont want to see the groupings etc.
We need to show the flat data like in oracle reports delimited data
Thanks,