Actually multi value parameters is not supported on WebServices source. Multi value are passed as [string1,string2] instead of $paramName=string1¶mName=string2. Multi value has to be passed on query string on correct way!
Hello,
I have been working on some reports that require multiple tables on a single page. This limits the space columns have for data being bound to fit and results in text wrapping. I made a support ticket asking if there was a way to have dynamic column widths. I hoped to find a way to get table columns to change their widths depending on the data being bound to the table, while still maintaining the overall width of the table. My idea was to have it distribute the space (change the column width) to best display data and avoid text wrapping if possible.
Attached to this request are some PDFs. One of them ("Current Report") shows that some data is either cut off or uses text wrapping. The other attached PDF shows the closest I could get to an acceptable layout, given our clients requirements and what our design team wants the reports to look like.
Thank you!
Datadynamics was purchased by GrapeCity some 4 years ago but Telerik Reporting is still relying on the old assemblies for converting. The converter needs to be updated and should support rdx as well as codebehind files. I was able to convert the Telerik.ReportConverter.ActiveReports to use ActiveReports 7 but am not able to use the modified dll. See attached.
Hello,
It would be nice to control the report loading animation during a report viewer refresh. We are refreshing a report every x seconds and it appears to be flickering during a refresh.
Thank you.
Hi,
The standalone report designer needs config settings for
I find that I have to set each of these for every report.
Please add these,
Karl
I would like to see a control as in an addition to the kendo mvc toolkit where you could build into an application the ability for customers to design the layouts of their reports. For example.. Say you have an app you built for multiple customers. Now the app might have a series of basic report templates in terms of queriable object model outputs. Being able to build an interface that would allow the customers to design their own layouts for what fields, positioning on the page etc..labels etc. and save that design to their account for future consumption would be a huge selling feature for an application. Specific example an invoicing application. Well you could pre build a bunch of templates and have the customer choose one (the only real option currently available)...or you could provide a list of fields(based on object models for the underlying report query) and have an embedded designer allow them to design their own invoice and save it.
I have a requirement for my report book to feature a title page and *THEN* a table of contents for the report book, followed by the report book's content. Currently, the TOC for a report book can only go at the beginning or the end of the book. My requirement required the ability to specify the TOC position more generally. Here are two possible approaches: 1. Implement the requirement as it is stated by allowing the report book's TOC to be positioned after such and such a report - the nth, or some other means of identification. 2. Honour the TOC for a report book that is nested inside another. I created a 'sub book' with the TOC as its first page and then added this an outer book. Unfortunately, the inner book's TOC was not honoured and the report was skipped. To my mind, the second suggestion above feels easier to implement (but I am guessing, of course). It certainly would allow just about any combination.
A Reporting engine should expose the ability to control the layout of the table of contents\Document Map. Reports are not always data driven and should give the ability to display the contents of the report at different levels, much like Microsoft Word does with their table of contents.
Please add a new ZoomMode to stretch the report to the viewer's visible area
To store reports, the Web Report Designer offers FileDefinitionStorage as an out-of-the-box solution for the DefinitionStorage. this FileDefinitionStorage does not support relative paths or sub-directories.
While the UriReportSourceResolver, which is used in the REST Service for rendering reports, does support sub-directories. These two services will often be used together, and for this reason, should behave consistently.
I have configured Asp.NET Core 5 IReportServiceConfiguration in DI for ReportsControllerBase with ReportServiceConfiguration.ReportingEngineConfiguration set to IConfiguration with custom IConfigurationProvider providing ConnectionStrings which can change in runtime so the provider notifies about configuration changes via IChangeToken.
But the updated ConnectionStrings are not propagated to the service.
To fix it, I have made this hack:
reportEngineConfigurationChange = engineConfiguration.OnChange(() => { telerikConfigurationManagerReset(); configuration.ReportingEngineConfiguration = engineConfiguration; });
which listens to IConfiguration changes and calls TelerikConfigurationManager.Reset (via reflection) and sets configuration again.
It would be nice if this would be implemented on Your side, please.