I used https://docs.telerik.com/reporting/html5-report-viewer-howto-use-it-with-reportserver to setup an HTML5 Report Viewer with Report Server. After running the project, the viewer does not load. It seems that it could not find telerikReportViewer script.
Workaround: Instead of
<script src="/api/reports/resources/js/telerikReportViewer"></script>
use absolute path:<script src="http://yourreportserverhost:83/api/reports/resources/js/telerikReportViewer"></script>
Add the ability to control the distance between the Image and the Text for a Check Box & Radio Box. A space may be used but this does not work where the text wraps to another line and does not give the required level of control.
The Telerik Reporting only support fixed size page now. But sometimes we need continues-roll paper mode.(like: receipt paper) Some reporter tools: ActiveReports, it has 3 mode:(Page Reports, RDL Reports, Section Reports) On "Telerik Forums / Reporting Forum" there is already some people asked it before 2 years ago. But until now the basic feature not release....
Prerequisites: .NET Core application that uses HTML5-based report viewer and REST service with Kestrel web server.
When the application is stopped from the command prompt with CTRL+C, it does not stop all the dotnet.exe child processes that are spawn by the application and hangs on "Application is shutting down..." indefinitely.
This behavior might be related with the issue https://github.com/aspnet/Hosting/issues/960 which states that CTRL+C is not forwarded to the child processes.
Perform a detailed examination to see if there is an option to close the processes internally when a shutdown procedure is initiated.
When a textbox had a value and after that the value was deleted, if you try to set a language for the report the following error message occurs: "textbox26.width cannot be parsed as a unit because it does not contain numeric values.
Asking to enable typing into the font combo box in standalone Telerik Report Designer.
The concept would be to click on the font drop down and just start to type the name of the font and have the list shift to that position for you.
When exporting a long report with ContinuousPaper = true in Word format, the output document has text cut.
Based on the limitation explained in the Pagination section in Design Considerations for Word Rendering article of our documentation, Word supports maximum page size of 22 inches wide and 22 inches high. If the page is higher than 22 inches, some data may not be displayed in Print Layout view. So, in Word, a long document couldn't be rendered.
At least, this property could be avoided when printed in Word format.
Reporting environment:
The problem: I have a table that has several million records. I have a report with parameters to query those records. Example on a sales report: Customer (All or specific customer) and Product (All or specific product) and date range. If by mistake the user selects all customers, all products, and a date range of 10 years, he may get millions of records for the report. After several seconds he realizes that he entered the wrong parameters and wants to cancel the report. There is no way to cancel. The solution was to run this in another thread and kill the process. That seems like a hack and doesn’t stop the web request so the web service keeps working even after the report has been killed.
Change request: Allow canceling in two ways:
The web data source should implement the “Cancellation Token” and cancel the web request when the report is canceled. Postman, browsers, and other tools use this technique so that the web service understands that the data is no longer needed and it can stop the request.
Some links explaining how to implement Cancellation Tokens: