Unplanned
Last Updated: 02 May 2019 14:00 by ADMIN
Add support for Latin-2 - Central European characters ( š,Š,Đ,đ,Č,ć,,Ž,ž )
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"]

Unplanned
Last Updated: 19 Apr 2019 13:15 by ADMIN
Created by: Samuel
Comments: 0
Category: Reporting
Type: Feature Request
3
It would be nice to be able to just use the color value from the query result, as the color.
Unplanned
Last Updated: 12 Apr 2019 14:43 by ADMIN
The text of vertical textbox is cropped and duplicated on the next page in crosstab
Declined
Last Updated: 10 Apr 2019 10:23 by Khaiser
Created by: Khaiser
Comments: 2
Category: Reporting
Type: Feature Request
1

Hi Team,

 

As Heat maps are not supported by Telerik reporting, Could you please let me know if you have workaround solution readily as a demo . If not please suggest the which third part libraries to be used in C# solution.

Unplanned
Last Updated: 09 Apr 2019 11:13 by ADMIN
While a project is being debugged, VS crashes when the report's zoom is changed in the VS Designer. Please, check the attached screenshot.
Unplanned
Last Updated: 05 Apr 2019 06:09 by ADMIN
Created by: Joel
Comments: 0
Category: Reporting
Type: Feature Request
2
It would good if it is possible to set the Value of PageBreak conditionally or based on some value.
Unplanned
Last Updated: 27 Mar 2019 08:21 by ADMIN
Created by: Paolo Canzian
Comments: 0
Category: Reporting
Type: Feature Request
1
It would be great if all the localizable/localized strings/resources can be exported, e.g. into an Excel file, so they can be given to a translator and imported once translated
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.
Unplanned
Last Updated: 21 Mar 2019 08:02 by ADMIN
Created by: Guillermo
Comments: 1
Category: Reporting
Type: Bug Report
2

Good afternoon. When I export a report with a crosstab that contains vertical titles to PowerPoint, the titles are not visible. Please could you help me fix it. Thank you.

Unplanned
Last Updated: 21 Mar 2019 07:40 by ADMIN
The rotated text using Times New Roman font appears truncated in the Html5 Report Viewers. The text is properly rendered in formats other that Html.
Completed
Last Updated: 20 Mar 2019 00:39 by ADMIN
Created by: Jeff
Comments: 53
Category: Reporting
Type: Feature Request
124
It would be nice to have a report viewer component that does not rely on the full .net framework as described here.  https://docs.telerik.com/reporting/html5-report-viewer-asp-net-core-2.  I have a project that is not built against the full framework and would like to integrate reporting without converting all of my projects.
Pending Review
Last Updated: 18 Mar 2019 08:05 by ADMIN
I have tried like operation in condition formatting and it is not working.
Unplanned
Last Updated: 18 Mar 2019 07:59 by ADMIN

Much like the way Excel has the ability to utilize VBA functions. it would be usefull and more conventient for developer if they could include custom functionality/functions in a report rather than use an external assembly.  The steps involved to include/use an external assembly is daunting at best and not at all straight forward.  

Something like you right click the report and one of the menu options is "Add Custom Function".  Or in the expressions dialog box have an option to create/add a custom function.  

You get the point.  I'm sure your team of developers could come up with something. 

Unplanned
Last Updated: 13 Mar 2019 12:04 by ADMIN
The Fonts meta information in the PDF rendered document is incorrectly populated. It contains entries for missing Font subfamilies, i.e not available during report rendering. We observed this with Franklin Gothic Medium Condensed font that has only Regular subfamily.
Unplanned
Last Updated: 13 Mar 2019 10:05 by ADMIN
Created by: IT
Comments: 0
Category: Reporting
Type: Bug Report
1
The ExportDialog window in Windows Forms Report Viewer does not respect resource files for localization and displays always the default text.
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

Under Review
Last Updated: 10 Mar 2019 23:39 by ADMIN
Created by: Pete
Comments: 1
Category: Reporting
Type: Feature Request
5
After setting the Margins under the Page Settings, the Width should be automatically set.
The Width should be the Paper Width with the Left and Right Margins subtracted.
What happens when this 'formula' is not used, which one takes precedence?

It would also be nice to display the Height as a read only property.
Completed
Last Updated: 08 Mar 2019 10:47 by ADMIN
Support generating reports on .NET Core running on a non-Windows platform, esp. macOS or Linux-like OS.
Completed
Last Updated: 08 Mar 2019 10:47 by ADMIN
Created by: Tom Robertson
Comments: 4
Category: Reporting
Type: Feature Request
2
Please add full support for asp.net Core. What you currently have is not nearly complete. We need to be able to use the report designer and add reports in a .net core project and we need to be able to use reports that have objectdatasources. Currently object datasource does not work with .net core dll's.