Unplanned
Last Updated: 16 May 2024 08:19 by Lars Rikard
Created by: Lars Rikard
Comments: 0
Type: Feature Request
1

The WPF Report Viewer should support rounded corners.

Currently, I am not allowed to do the following:

<telerikReport:ReportViewer Grid.Row="1"
                            Grid.Column="1" 
                            Name="reportViewer1"
                            ReportSource="{Binding ReportSource}">
    <telerikReport:ReportViewer.Resources>
        <Style TargetType="telerikReport:ReportViewer" BasedOn="{StaticResource {x:Type telerikReport:ReportViewer}}">
            <Setter Property="BorderBrush" Value="{telerik:Windows11Resource ResourceKey=PrimaryBorderBrush}"/>
            <Setter Property="BorderThickness" Value="1"/>
            <Setter Property="Margin" Value="5"/>
            <Setter Property="CornerRadius" Value="4"/>
        </Style>
    </telerikReport:ReportViewer.Resources>
</telerikReport:ReportViewer>

Unplanned
Last Updated: 16 May 2024 08:17 by Martin

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.

Unplanned
Last Updated: 10 May 2024 11:59 by ADMIN
Created by: Jai
Comments: 5
Type: Feature Request
15
If there are parameters which are not mandatory, the reports automatically when loaded. In actual scenarios, there may be a lot of data being processed as the parameters may be empty. Developer should have an option on report level, say, AutoRun as true or false. The developer could decide if report needs to auto run.

Thanks,
Jai
Unplanned
Last Updated: 03 May 2024 15:28 by Bradley

At the moment, a whole words are removed from text until it becomes short enough to fit in the text box, and this is the only available behaviour.

There should be an option to put ellipsis or clip the text to the textbox width instead (like CSS text-overflow "ellipsis" and "clip").

There's also an older discussion here:
https://www.telerik.com/forums/request-ability-to-show-an-ellipsis-in-a-text-box-when-the-text-overflows-the-available-space

Unplanned
Last Updated: 02 May 2024 12:24 by ADMIN
Created by: Prashant
Comments: 5
Type: Feature Request
1

we need to have complete End User Tutorial for Web Report Designer, where all the excel like features need to be demonstrated.

including Pivot etc.

Unplanned
Last Updated: 30 Apr 2024 13:45 by ADMIN
With the standalone desktop designer it would be great to be able to override the version of the report file so that it can be used in dev/test/historical environments where we are still referencing an older version of the Telerik Reports libraries.
Unplanned
Last Updated: 26 Apr 2024 08:29 by Simon

When I render one of my reports I receive the error message  “A generic error occurred in GDI+”.

I figured out that one HtmlTextBox receives quite a long HTML from the data source - exceeds 32 768 characters. In my experiments, the error starts appearing if the text is longer than 32 775 chars.

In this case, the Reporting engine shouldn't throw a misleading GDI+ error but instead throw a more specific exception.

Unplanned
Last Updated: 25 Apr 2024 14:15 by Steve
The current version(R3 2023) of the MsSqlServerStorage implementation uses the old System.Data.SqlClient data provider which forces to use a different connection string from my application because keywords such as 'authentication' are not supported by the older provider.
Unplanned
Last Updated: 24 Apr 2024 12:09 by Aldo

The WebServiceDataSource wizard in the Web Designer doesn't let you construct Expressions for the Parameter values. The same functionality is present in the Standalone Report Designer.

The SqlDataSource Wizard of the Web Designer also allows the creation of Expressions for the Parameter values.

It would be convenient if the report creators were allowed to create the Expressions for WebServiceDataSource parameter values directly in the wizard. Currently, you need to type or paste the Expression manually.

Unplanned
Last Updated: 23 Apr 2024 01:23 by Tommy

Coming from having developed many SSRS reports one thing I think telerik is missing is a nicer visualisation of row and column grouping in a table. SSRS does this really well as shown in the screenshot below where we can easily see which rows belong to the detail and 2 other groups.

I think this would be a very useful addition to the telerik designers!

 

Unplanned
Last Updated: 15 Apr 2024 08:49 by ADMIN

In the non-native angular report viewer we were using a customized template to change the order of the buttons and also to add custom buttons. We want to migrate to the Native Angular Report viewer but it lacks toolbar customization options. We need to be able to change the order and hide existing toolbar functions. Also we need the ability to define custom buttons with custom logic that executes when the button is pressed. 

I've tried to create a sub-class of the ReportingAngularViewerComponent and define a custom template for the toolbar, but the problem is that some of the core toolbar buttons (like zoom and pager) use custom local Telerik components that aren't exported from the ReportingAngularViewerModule, so I can't use those directly. 

It would be great if you can export all components used in the ReportingAngularViewerModule or provide an alternative way to customize the toolbar (may be similar to how you allow customization of the toolbar for the Editor control where users can define what toolbar commands are available, order them as they like and also define custom commands)

Unplanned
Last Updated: 10 Apr 2024 08:27 by ARECNeprix
Created by: Subin
Comments: 4
Type: Feature Request
15
I need an option to set line height for contest in report.
Unplanned
Last Updated: 08 Apr 2024 09:29 by Víctor

As an implementer, I sometimes need to trigger the Web Report Designer's commands programmatically. For example, saving the report definition when an external button is clicked.

Exposing an API for invoking the designer's commands would be of great help in implementing such functionality.

Unplanned
Last Updated: 01 Apr 2024 09:52 by Andrew

It would be great if the expressions were validated before leaving the expression editor rather than only finding out I missed a bracket ')' when running the report.

Unplanned
Last Updated: 29 Mar 2024 13:41 by ADMIN

I would like to formally request the ability to "sign" in some fashion a trdp/trdx file.  Note that if only the new file format is supported then that would be acceptable.

Basically, I would like to apply some signature that we could, if we so chose, read from the report file to verify that it was us that created or last modified the file.

If we need to use a separate tool to apply the signature other than the report designer, that would not be an issue.

The signature could be anything that Telerik/Progress decides we can use such as a code signing certificate, a strong name, etc.

Using the last modified time, or a hash value created from the current contents of the report file would not be a good solution as that would mean we would need to have a list of the hash values for each report and it would need to be updated every time the report is changed.
We are looking for something that could be applied to all reports that we create and that clients could not replicate.

This would need to be something that clients who we deploy the report files to cannot replicate and therefore if they modify the report file using the Telerik designer, it would remove that signature.  This way we can easily programmatically determine if the client has modified the report, and therefore prevent using it as if it is ours.

Note that we provide the ability to use custom reports in our application which are treated as separate from our core provided reports.  Also, I had posted to the forum asking if this is currently possible (https://www.telerik.com/forums/sign-telerik-reports).

Thank you.

Unplanned
Last Updated: 25 Mar 2024 11:53 by Todor

Telerik Reporting supports various Barcodes.

It will be very useful if it also supports out-of-the-box Radio Frequency Identification (RFID).

The blog RFID vs Barcode: Comparison, Advantages & Disadvantages elaborates on the difference between the Barcode and RFID and why the latter is preferred in some scenarios. 

Unplanned
Last Updated: 22 Mar 2024 19:59 by Mark
Created by: Brian
Comments: 3
Type: Feature Request
4
Please provide an option to launch a sub report directly from within the main report designer (standalone version).
Example, in Crystal reports, if there is a sub report within a report, a user can double click that sub report and it opens it as a new report tab. This is very convenient rather then having to chase down the path to the subreport and open it manually.
Unplanned
Last Updated: 21 Mar 2024 14:07 by ADMIN

I am using Kendo UI Spreadsheet control in our project to present Tabular contents that end user can easily modify just like a normal spreadsheet operations and I saved it in database using toJSON method provided by kendo spreadsheet.

When I will get the database driven JSON data from kendo spreadsheet as mentioned above,  I want to present it in Telerik Reporting using Table (Datasource of that Table will be from JSON data I saved earlier).

Currently there is no such feature available in Telerik Reporting and I would like to request that feature to be included in future release.

Thanks

Unplanned
Last Updated: 13 Mar 2024 14:48 by Muhammad

In the Standalone/Visual Studio Report Designers, the distances from the currently selected report item to the nearest elements can be shown by clicking the Show Dimensions button.

We would like to see this functionality implemented for the Web Report Designer too.

Unplanned
Last Updated: 13 Mar 2024 13:42 by Radu
Currently, the auth token is not yet passed from the client to the service. For that reason, it would be nice if the bearer token can be passed with the Web Report Designer API Requests.
1 2 3 4 5 6