Completed
Last Updated: 04 May 2021 08:41 by ADMIN
If I have a dropdown or multi select list as a report parameter, if there are many items in the list then you are forever scrolling. Can a search feature be built in so that you can search for items you want in the list and select rather than having to scrolling up and down?
Completed
Last Updated: 14 Feb 2019 09:02 by ADMIN
Currently the Telerik.Reporting.WebServiceDataSource is available only for .NET 4.0 and above.
Completed
Last Updated: 07 Feb 2019 12:37 by ADMIN

In Standalone designer, when the Localizable of the Report is set to True and a new Language is selected, there is an "Object reference not set to an instance of an object" error.

Workaround: save the document after changing the culture/language, close the report, and then re-opening the saved report in the designer.

Pending Review
Last Updated: 19 Feb 2019 14:07 by ADMIN

 Using Roboto Medium changes values  "FVS!dBTI"  should be "EUR Cash" (shift characters by 1) weird !!!!

 

 

 

Pending Review
Last Updated: 18 Mar 2019 08:05 by ADMIN
I have tried like operation in condition formatting and it is not working.
Declined
Last Updated: 12 Mar 2019 07:43 by ADMIN

Hi

 

I am no longer able to build my reporting project on TFS on line, (I used to be able to) I get the build error

The nuget command failed with exit code(1) and error(Errors in packages.config projects
    Unable to find version '13.0.19.116' of package 'Telerik.Reporting'.
      https://api.nuget.org/v3/index.json: Package 'Telerik.Reporting.13.0.19.116' is not found on source 'https://api.nuget.org/v3/index.json'.
    Unable to find version '13.0.19.116' of package 'Telerik.Reporting.Services.WebApi'.
      https://api.nuget.org/v3/index.json: Package 'Telerik.Reporting.Services.WebApi.13.0.19.116' is not found on source 'https://api.nuget.org/v3/index.json'.)
Packages failed to restore

 

Please help this is urgent .

 

regards Laz

Declined
Last Updated: 25 Mar 2019 15:06 by ADMIN
I hope the user can edit or save or load the report template in winform application like devexpress.
Pending Review
Last Updated: 23 Apr 2019 07:45 by Anders
Created by: Anders
Comments: 1
Category: Reporting
Type: Bug Report
0

In CSharp.ReportExamples.VS2017, I copy all reports into project CSharpAspNetCoreDemo, and make them always copy.

Then I change ReportsController to the Reports directory above.

When Run it in IIS, it's OK, but when check into Docker, there is an exception thrown.

{
	"message": "An error has occurred.",
	"exceptionMessage": "Type: Telerik.Reporting.XmlSerialization.Current.ReportSerializable`1[Telerik.Reporting.Report]",
	"exceptionType": "System.MissingMethodException",
	"stackTrace": "   at Telerik.Reporting.Xml.ObjectXmlReader.CreateInstance(Type type, String name)\n   at Telerik.Reporting.Xml.ObjectXmlReader.ReadObject(Type type)\n   at Telerik.Reporting.Xml.ObjectXmlReader.ReadXmlElement(String name)\n   at Telerik.Reporting.Xml.XmlSerializer.Deserialize(Stream stream, IResourceHandler resourceHandler)\n   at Telerik.Reporting.XmlSerialization.ReportXmlSerializer.Telerik.Reporting.XmlSerialization.IXmlSerializer.Deserialize(Stream stream, IResourceHandler resourceHandler)\n   at Telerik.Reporting.ReportPackager.UnpackageDocument(Stream packageStream)\n   at Telerik.Reporting.Processing.UriReportDocumentResolver.Resolve(IProcessingContext context, UriReportSource rs)\n   at Telerik.Reporting.Processing.ReportDocumentResolver.Bind[T](IProcessingContext context, ReportSource source, Func`2 func)\n   at Telerik.Reporting.Processing.ResolvedReportDocument.ResolveReportsRecursively(ReportSource rs, IProcessingContext context, IDictionary`2 parentRsParameters, Boolean parentShouldDispose, List`1 result, IReportDocument& definition, ResolvedReport& tocReport, ReportBookTocPosition& tocReportPosition)\n   at Telerik.Reporting.Processing.ResolvedReportDocument.Create(ReportSource rs, IProcessingContext context)\n   at Telerik.Reporting.Services.Engine.ReportEngine.GetParameters(String clientID, String report, Dictionary`2 parameterValues)\n   at Telerik.Reporting.Services.AspNetCore.ReportsControllerBase.GetParameters(String clientID, ClientReportSource reportSource)\n   at lambda_method(Closure , Object , Object[] )\n   at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)\n   at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync()\n   at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeNextActionFilterAsync()\n   at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context)\n   at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)\n   at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeInnerFilterAsync()\n   at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.InvokeNextExceptionFilterAsync()"
}

This is my Dockerfile

FROM mcr.microsoft.com/dotnet/core/aspnet:2.2-stretch-slim AS base
WORKDIR /app
EXPOSE 80

FROM mcr.microsoft.com/dotnet/core/sdk:2.2-stretch AS build
WORKDIR /
COPY ["AspNetCoreDemo/CSharpAspNetCoreDemo", "AspNetCoreDemo/"]
RUN  restore "AspNetCoreDemo/CSharpAspNetCoreDemo"
COPY .
WORKDIR "/src/AspNetCoreDemo"
RUN  build "CSharpAspNetCoreDemo" -c Release -o /app

FROM  AS publish
RUN  publish "CSharpAspNetCoreDemo" -c Release -o /app

FROM base AS final
RUN apt-get update \ 
    && apt-get install -y --allow-unauthenticated \ 
        libc6-dev \ 
         \ 
        libx11-dev \ 
    && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY --from=publish /app
ENTRYPOINT ["", "CSharpAspNetCoreDemo"]

Pending Review
Last Updated: 03 May 2019 14:31 by ADMIN
Created by: Anders
Comments: 1
Category: Reporting
Type: Bug Report
0

In my report, I use font SimSun to display Chinese, when preview it's OK, but after click print, an exception is thrown.

Internal Server Error
Font data for font "SimSun" cannot be obtained. Possible reasons are: The font is not installed in . The font is not found in the directories specified by the "FontLocations" configuration entries. The font is not declared in "" configuration section

In my docker image, run command -list, is there.


C:\Users\Anders> docker exec -it 3485 bash
root@3485bbdabbb3:/app# fc-list
/usr/share/fonts/truetype/dejavu/DejaVuSerif-Bold.ttf: DejaVu Serif:style=Bold
/usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf: DejaVu Sans Mono:style=Book
/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf: DejaVu Sans:style=Book
/usr/share/fonts/simsun.ttf: SimSun,宋体:style=Regular
/usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf: DejaVu Sans:style=Bold
/usr/share/fonts/truetype/dejavu/DejaVuSansMono-Bold.ttf: DejaVu Sans Mono:style=Bold
/usr/share/fonts/truetype/dejavu/DejaVuSerif.ttf: DejaVu Serif:style=Book
My report is very simple, just a textbox contains several Chinese Fonts.
My  is below.
FROM /2.2- AS builder
WORKDIR /app

# caches restore result by copying  file separately
COPY * config/
RUN  restore

COPY .
RUN  publish --output /app/ --configuration Release
RUN  -n 's:.*<AssemblyName>\(.*\)</AssemblyName>.*:\1:p' * > __assemblyname
RUN if [ - __assemblyname; then filename=$ *); echo $filename%*} > __assemblyname; 

# Stage 2
FROM /2.2--runtime

ENV PORT 80
EXPOSE 80

COPY simsun.ttf /usr/share/fonts/simsun.ttf

RUN apt-get update \ 
    && apt-get install -y \ 
        libc6-dev \ 
         \ 
        libx11-dev \ 
		 \
    && rm -rf /var/lib/apt/lists/*

RUN fc-cache -f -v

WORKDIR /app
COPY --from=builder /app

ENTRYPOINT  $cat /app/__assemblyname)
Unplanned
Last Updated: 27 May 2019 12:31 by ADMIN
ADMIN
Created by: Milen | Product Manager @DX
Comments: 0
Category: Reporting
Type: Feature Request
0

 

As a developer integrating a Web-based report viewer into my apllication / Report Server implementer,
I would like to provide BCC field as part of the Send email functionality ( https://docs.telerik.com/reporting/html5-report-viewer-send-mail ),
So that my end users have more flexible UX.
Completed
Last Updated: 24 Nov 2021 09:26 by ADMIN
Release R2 2019 SP1

I put a ReportViewer in an application and VisualStudio inserted the required MergedDictionaries.  I updated them to the Green theme and added the Green reference, now I get a XAML error stating Cannot find resource named 'RepeatButtonStyle.'  I comment out this line in my App.xaml file:

<!--<ResourceDictionary Source="/Telerik.ReportViewer.Wpf.Themes;component/Themes/Green/Telerik.Windows.Controls.Navigation.xaml" />-->

the error goes away and my XAML designer works again, but the navigation section of the report viewer has the incorrect theme applied.

I looked in the copy of the file that is on my computer located at:

   C:\Program Files (x86)\Progress\Telerik Reporting R2 2019\Wpf\Themes\Green\Telerik.Windows.Controls.Navigation.xaml

On line 8831 there is a reference to a Static Resource named RepeatButtonStyle.

<Style x:Key="TabbedWindowScrollButtonStyle" TargetType="RepeatButton" BasedOn="{StaticResource RepeatButtonStyle}">

I assume this the culprit?

There was a similar issue in February.

https://feedback.telerik.com/wpf/1384801-pdfviewer-cannot-find-resource-named-repeatbuttonstyle-design-time-exception-in-fluent-theme-noxaml

Pending Review
Last Updated: 01 Jul 2019 05:25 by ADMIN

Hi,

 

There is an issue where the search window that opens from the Report Viewer tool bar does not allow for deleting text from the search string input box using backspace.

The keyboard command provider seems to have many other keys covered for the intended behavior, but backspace does not seem to be handled appropriately.


Declined
Last Updated: 03 Jul 2019 08:54 by ADMIN
Created by: Patrick
Comments: 1
Category: Reporting
Type: Feature Request
0

Hi, can you organize the progress windows' program group and group packages by version? A sample of half of my list in windows in the file I joined.

Thanks,

Declined
Last Updated: 09 Oct 2019 13:18 by ADMIN
Created by: Daniel
Comments: 2
Category: Reporting
Type: Bug Report
0

Hi,

i have a very big problem with Telerik Reporting after upgrading from version 2017 R3 (11.2.17.503) to the latest version.
I tested also the version (2018 R3, 2019 R1 SP1, 2019 R2 SP1).

 

After installing the newer version, customers see data of other customers!!

 

I have a multi-tenant system. All of our report data sources filters by the logged in user TenantId (ASP.NET Identity).

But with newer versions if a second user opens the same report, he gets the data from the first user.

 

You can find a working repro here: https://github.com/IT-CASADO/Telerik-Reporting-Bug1

 

Clone the project and bring it to run. In branch "master" you find the working version, and in the branch "features/v13.2.19.918" you find the broken version.

 

Regards,
Daniel

Declined
Last Updated: 08 Nov 2019 16:06 by ADMIN

in our solution, we store the trdx reports designed with Standalone Designer as xml strings in our database,
and render them to pdf in the background services by using  Telerik.Reporting.XmlSerialization.ReportXmlSerializer.Deserialize

the new web based designer would be a good addon to integrate report design directly into the appliciation.

but the current preview version of webreportdesigner needs to be configured with a FileStorage.
it is possible to override the GetReport and SaveReport functions in a custom ReportDesignerController and load the report from a string (db in our case),

but since the ReportJsonSerializer is an iternal class, it is not possible to create a json response and send it to the webeditor.

so it would be helpfull, either to make the ReportJsonSerializer a public class so it can be used to convert the report manally to json, or extend the

whole thing to load the reports from strings directly.

 

Declined
Last Updated: 29 Mar 2021 12:17 by ADMIN
Created by: n/a
Comments: 2
Category: Reporting
Type: Feature Request
0
Would be great if your upgrade wizard would look for web.config and web.config.* files to update rather than just the web.config file. 
Pending Review
Last Updated: 29 Jan 2020 21:25 by Mike
Created by: Carl
Comments: 2
Category: Reporting
Type: Bug Report
0

Hi

If I run the angular report viewer within my main page, all is well. However if the report viewer is hosted in a <p-dialog> (or <p-overlaypanel>), the report does not render (even though data is loaded and the report can be exported). To confirm this, I even have the report visible in a <tr-viewer> on the main page behind the dialog and load them at the same time.

If the dialog is not visible when the main page opens, then the report viewer toolbar is in a column on the left, and is not operational. (see attached)

If the dialog is visible when the main page opens, then the toolbar appears at the top and functions normally. (see attached)

 

<tr-viewer #rptViewerBody
     [containerStyle]="viewerContainerStyle"
     [serviceUrl]="reportServerUrl"
     [viewMode]="'INTERACTIVE'"
     [scaleMode]="'SPECIFIC'"
     [scale]="1.0">
</tr-viewer>

vs

<p-dialog modal="true"
          appendTo="body" 
          header="Report"
          [(visible)]="showReport"
          [width]="1500" 
          [height]="1500">

        <tr-viewer #rptViewerDialog
            [containerStyle]="viewerContainerStyle"
            [serviceUrl]="reportServerUrl"
            [viewMode]="'INTERACTIVE'"
            [scaleMode]="'SPECIFIC'"
            [scale]="1.0">
        </tr-viewer>
</p-dialog>

 

In the code, I tried both of these container styles. The result for the dialog was that relative position rendered the toolbar (top or left), but absolute position rendered nothing at all (height became 0)

this.viewerContainerStyle = {
      position: 'absolute',
      top: '0px',
      left: '0px',
      right: '0px',
      bottom: '0px',
      ['font-family']: 'ms sans serif'
    };
this.viewerContainerStyle = {
      position: 'relative',
      width: '1300px',
      height: '1300px',
      ['font-family']: 'ms sans serif'
};

 

using @progress/telerik-angular-report-viewer": "7.19.718"

 

Thanks.

Declined
Last Updated: 06 Mar 2020 07:09 by ADMIN
Created by: Venkat
Comments: 0
Category: Reporting
Type: Feature Request
0

Hi Team ,

 

* We have created a ASP.NET MVC Project --> Created a new application related to our company which includes login page and the next page

* For creating a report , we have created a Telerik report library --> And then we have designed a report and added a mvc report viewer page . 

* But we get certain errors saying few packages are not installed .

 

We have attached the solution and screenshot for your reference

Completed
Last Updated: 27 Mar 2020 15:13 by ADMIN
Release 2020 R1 SP2 (Latest Internal Build)

The label connectors are not displayed when the graph contains a second coordinate system, which is configured for non-pie charts, but is not used by the graph series.

Pie chart coordinate system has Category Scale for its Radial Axis and Numerical Scale for its Angular Axis.

Since the second coordinate system is not used by the series it should not affect the appearance of the label connectors.
Completed
Last Updated: 27 Mar 2020 15:13 by ADMIN
Release 2020 R1 SP2 (Latest Internal Build)
The PDF export produces an invalid document when the accessibility features are enabled and the engine runs in Docker environment with Linux containers.