In Visual Studio Report Designer Preview, Use https://play.google.com/store/apps/details?id=com.teacapps.barcodescanner and other apps to scan the barcode(such as attachment Visual Studio Report Designer Preview.png), but after exporting the PDF, The first barcode scan is correct, the result of the second barcode scan is the content of the first barcode(such as attachment Exported PDF.png), Attachment BugDemo.zip is my project, How can I fix this problem, thanks.
I have a following default code in a html file for a web designer.
$(document).ready(function () {
$("#webReportDesigner").telerik_WebReportDesigner({
persistSession: false,
toolboxArea: {
layout: "list"
},
serviceUrl: "some url",
report: "some_report_name",
}).data("telerik_WebDesigner");
});
I have also a custom report storage implemented from IDefinitionStorage, where I have a GetDefinition("some_report_name") method implemented in a custom way. In order to do that, I need to send additional parameters from a web designer (html code provided previously) but don't know how to do that.
For example, I need to open SalesInvoice.trdx file and I do a following: report: "SalesInvoice.trdx". If i need to send additional parameter, let's say some kind of token, there is no good place to send it. As a work around, i am doing report: "SalesInvoice.trdx&token=123". The problem with this, it is appearing in a title of a web designer and I don't want that. In an attachments, there is a screenshot where it looks good with a simple name and the one which has a token in it.
So, the question is, can I send other parameters as well from a client side of web designer to the server like parameters or so?
In a HTML5 ReportViewer we can send report file name and parameters as a reportSource like this:
serviceUrl: serviceUrl,
reportSource: {
report: reportUrl,
parameters: reportParams,
Can we do the same? Or how can I do that?
Hi Telerik Team,
We are having report parameters up to 30. For better UX we need to group parameters into sections. Please add this feature.
Attached is an example of what we want to achieve.
When displaying a report in the WPF Report Viewer, with a TextBox in the page Footer, using the Expression:
= Format("Page: {0} of {1}", PageNumber("groupPerson", Fields.PersonId), PageCount("groupPerson", Fields.PersonId))The whole report is displayed and printed correctly.
When a single page is printed, for example: Page 3 of 5, using the Print Dialog, the page number is incorrectly printed as: Page 3 of 1
Currently, you need to add the Web Report Designer manually following the steps here:
https://docs.telerik.com/reporting/web-report-designer-setup-in-net-core
https://docs.telerik.com/reporting/web-report-designer-setup-in-dot-net-framework
It would be nice to have templates in VS as an easier way of adding the Web Designer.
The Telerik.ReportViewer.Wpf NuGet package does not contain all the dependent UI for WPF assemblies. I cannot use the UI for WPF NuGet packages without also having a license.
It would be nice if the WPF Report Viewer NuGet package included all the dependent UI for WPF assemblies.
Due to specifics in font resolving mechanism on Linux, some fonts cannot be resolved correctly when the font name includes the font-face name - for example, the name "Noto Sans CJK TC Regular" would resolve the font-face "Noto Sans CJK TC".
Provide NuGet package with UI for WPF NoXaml dependencies for adding it to the project that hosts WPF report viewer:
Telerik.Windows.Data.dllWe have implemented custom storage (IDefinitionStorage) with the SaveDefinition method where it saves the edited report in a custom way. There can be some validations and save can fail. For this, I am just throwing a new Exception. The error message is showing in a general way, and it doesn't show my custom message.
Hello,
We would like to know if/and when Query Designer will be implemented in web report designer?
I have a few reports in which I have a multivalue parameter that renders a ListView control. However, when the user clicks on "Select All", only the 1st value is sent to the server.
Also, if some of the values have default values when defining the Report parameter and one of them is the 1st value, then ALL values are pre-selected when the Report renders. However, when the user clicks "Preview", again only the 1st value is sent to the server.
The above happens when I reference Kendo ( kendo.all.js) 2020.2.513 in the project. With Kendo 2020.1.114 the viewer works as expected.