It takes 2+ seconds between "info" polls to the server. This should be a much smaller interval. Maybe .5 or .25 seconds.
Telerik's own ReportClient example shows a 500ms interval between info polls...
private static byte[] GetDocument(ReportClient restServiceClient, string instanceId, string documentId)
{
bool documentProcessing;
do
{
Thread.Sleep(500);// wait before next Info request
documentProcessing = restServiceClient.DocumentIsProcessing(instanceId, documentId);
} while (documentProcessing);
byte[] pdfDocumentBytes = restServiceClient.GetDocument(instanceId, documentId);
return pdfDocumentBytes;
}Bindings to the TitleStyle property of a ToC section result in the following error:
Bindings error - The value of property 'TitleStyle' is null
Currently, when you set SplitWorksheetOnPageBreak to True, the Excel Sheet name is formed from the DocumentName or ReportName and the number of the page.
It would be very helpful if the report authors can manipulate these names with Expressions.
We need our reports to have editable text fields where data can be entered into the pdf document and printed.
See also the Forum thread export pdf with editable text areas.
In the Word rendering, there is sometimes space between the footer and the body of the document.
Clicking the cancel button on the HTML5 report viewer show "Report processing was canceled" in the UI but the report is still being generated and rendered on the server.
In this old thread it is stated that it isn't possible to cancel the report generation on the server. Is that still the case?
It seems that the MultiSelect Combo Box Filtering does not work in the Report Viewer. o be smaller if the user starts typing
example of how it is removed
Code128 Barcode does not always pick the correct subset for the given input value
For example, the string A12B34C56DTelerik report is showing error -
Method Name: Telerik.reporting.PictureBox.Set_Value - Parameter is not valid.
Above highlighted line gives an error during component initialize.
It was working earlier, but now showing this error, even there is no code change. Please help.
Your help is highly appreciated.
Jeetendra Kumar
When the font that is used to generate the report is not installed on the client machine, some of the text may be cropped
t would be very useful to be able to embed fonts in DOCX and the other OpenXMLs, as in PDF.
React Report Viewer throws error ts(7016) on importing it in a TypeScript project:
Could not find a declaration file for module '@progress/telerik-react-report-viewer/dist/cjs/main'. 'C:/Users/dnikolov/Desktop/ReactTypesScript/my-app/node_modules/@progress/telerik-react-report-viewer/dist/cjs/main.js' implicitly has an 'any' type.
Try `npm i --save-dev @types/progress__telerik-react-report-viewer` if it exists or add a new declaration (.d.ts) file containing `declare module '@progress/telerik-react-report-viewer/dist/cjs/main';`
Report content is not selectable, and we know that there is a limitation in WinUI not to be able to search in report contents. But we want this functionality.
Is it on your roadmap to implement that feature?
Thanks,
We are using Telerik reporting R2.2022 version in our project. Some of our reports have html link (created with tag “a”). If we preview those reports html link doesn’t act as an actual hyperlink, so it’s not clickable. We know that there is a HtmlTextBox limitation not to be interactive in WinUI report viewer. But this is important for us to be able to click on html link on WinUI and we need that functionality.
I tested WinUI example project (CSharp.WinUIExample.VS2022.sln) and opened SwissQRBill.trdp report. The report has some links to the external source in internet, which is not clickable, but if you open it in Standalone report designer it’s clickable.
Is it on your roadmap to implement that feature?
Thanks,
The overlap warnings may clutter up the page.
It will be a good option to be able to switch them off. The reason is that most of the time I want to ignore them because they actually do not cause problems. If I want to turn it on to check I would be able to.
Having the PrintOnFirstPage property set to False does not always hide the Page Footer section on the first page
If the vertical space of the report(The paper height of the paper size which can be seen in Report.PageSettings) allows it, the footer will get rendered on the first page despite the property being False.
The customer should be able to disable printing, text and graphic selection and extraction, page rotations and others.