The documentation is syntax prone to errors and does not follow well for new developers. The example code shown usually shows one step, please elaborate and show examples in depth for each topic. I have noticed in the forums that people have been complaining about errors in the documentation for more that two years and its still not fixed. I also see a lot of references to code that is shown in documentation that is obsolete or not yet implemented. The video series posted in the last few months (Q1 2015) are videos from 2009. Why?
request to add groups on the right side of a Table
Add intelligent code completion in the Report Designers Expression editor to improve the editor usability and user experience.
Add Telerik Windows Form Report Viewer configuration option to use Image rendering based on a Bitmap instead of a Metafile. This will enable the hosting of Telerik Reporting REST Service in Azure AppServices for Windows Forms Report Viewer usage.
Currently, the Graph item ignores missing data points and always connects data points which have values. According to the "Displaying Missing Values and Incomplete Periods in Time Series" paper (https://www.perceptualedge.com/articles/visual_business_intelligence/missing_values_and_incomplete_periods_in_time_series.pdf) this approach of ignoring missing values is not recommended. The preferred approach (with gaps for missing values) is described in detail in the paper.
This will be useful when small changes should be applied to a report based on the current rendering format. For example the following expression will be possible: = "Is the document PDF: " + RenderingExtension = "PDF"
Currently, the WebSeviceDataSource is making separate request whenever data is required, consider adding a caching mechanism to reduce the number of the web requests.
Please make the text boxes in the report actually resize and grow to the correct height. There is a catastrophic bug currently which causes the text box to stay at a single line and will not show the entire paragraph of text. This can happen 5% of the time leading to a very unreliable framework which cannot be used in a production environment.
There should be a way to handle the click of Export button. If someone wants to export to PDF with some changes in the report (change in color etc.) there should be a way to handle the Export event and a handle to change some report parameters being exported.
Please add support for the text-indent attribute. HTMLTextbox used to support the css attribute text-indent, but the support was removed a couple years ago. If used alone, it still appears to work on report, but then when used in combination with other css attributes (specifically the new justification alignment), it does not work as it should. This support would help with normal formatting items that come up when entering a paragraph that should start out indented but wanted to be justified as well. Attached is a test report showing it not working when combined with justification, but then working when it is alone.
I need to be able to have page breaks inside a Telerik reporting Table based on my row groups. Forum posts indicate that this is not currently possible. Thank you.
We need the ability to let a table group to initiate a page break. When you have a table with hundreds of row breaking the into separate pages per group would make the report look so much cleaner.
Hello, It would be nice if telerik reporting get a option tool which our customer can digitally sign a PDF generated from the telerik report. This feature ll be great for the contract , important customer document, to sign in by the web. thanks Oliver
I'm using Silverlight and the MVVM pattern with my current project. I have a listbox where the currently selected item is bound to a single telerik report viewer control. When the user selects an item in the listbox, the selected item changes and triggers the report to be displayed in the report viewer control. This all works as expected. My issue is that when the user goes back to a previously selected report, the report viewer sends a new report request to the server rather than trying to retrieve the cached report. I did a little bit of digging and found the DataContext of the telerik report viewer is a ReportViewerModel that has a CurrentSessionID property. On a new report request the CurrentSessionID is set to null. I'd like to store the CurrentSessionID after a report is rendered. That way if a user goes back to a report that's already been run, I can set the CurrentSessionID. Unfortunately, the CurrentSessionID property is a private property and I can't set it's value. Is it possible to make CurrentSessionID a public property? How can I accomplish this?
Currently report parameter types are limited. We would like to pass a data table as a parameter . Tried formatting to table string outside and using HTMLTextbox, but it does not parse <table > tags.
It would be nice to catch the parameters of the HTML5 viewer and the report engine. I need to encrypt the parameter Ids that is visible to any man-in-the-middle attacks. I did encrypt the parameters, and tried to use "CustomReportResolver : IReportResolver" to catch and decrypt it before send to the report engine or the report data source. But the resolver has only the report Id or name. I'm using UriReportSource because we need to evaluate and try dynamic reports.
When using Table item with dynamic columns (Visible property on column "binded" to expression) it would be nice to have the "ColumnWidth" also bindable in order to make some columns wider to fill the horizontal space if columns have been hidden
As a reports author I need ranking functions ( https://docs.microsoft.com/en-us/sql/t-sql/functions/ranking-functions-transact-sql ) so that I can use them in specific scenarios.
Currently, we can control if the PageHeader section should be rendered as an Excel native page header or as regular rows. The latter option always makes these rows frozen in the Excel sheet. It would be good to have this customizable (frozen/not frozen).
Right now, if I want a textbox to always take up space, even if visibility is set to false, I need to wrap it in a panel. I would love to be able to just check a boolean and have this done behind the scenes. Having everything wrapped in panels makes things a pain to rearrange and needlessly complex. Barring that, at the minimum, having a function to "wrap" a textbox with a panel would be nice so I don't have to create one, move the textbox, make the panel match the dimensions of the textbox, drop the textbox in, and then move the panel back where the textbox was.