Unplanned
Last Updated: 21 May 2019 08:04 by ADMIN
ADMIN
Created by: Silviya
Comments: 1
Category: Reporting
Type: Feature Request
3
When a report contains data item bound to big amount of data, it takes time to export in CSV format due to data denormalization.
This would be a performance improvement for big data reports. 
Completed
Last Updated: 20 May 2019 16:18 by Scott Waye
Created by: Scott Waye
Comments: 2
Category: Reporting
Type: Feature Request
3
With reference to support ticket 992325 where the behaviour of making minute changes to the measurements of grid columns occurs inadvertently I would like to suggest that this is changed and does not happen, i.e. improve the handling of floating point numbers in the serialization/deserialization process.  It causes noise in the source control history of the file.  Note that this behaviour is not apparent with comparable reporting solutions, e.g. SSRS/RDLC files.
Completed
Last Updated: 20 May 2019 11:15 by ADMIN
 For example in WinForms, it is initialized and ready for setting different device settings.
Completed
Last Updated: 15 May 2019 14:27 by ADMIN

The expression parser throws an exception when parsing an expression that calls .ToString() method after closing parenthesis like the one below:

=(Fields.Value1+Fields.Value2).ToString()

If the two operands in parentheses are converted to double, the expression is parsed and evaluated correctly:

=CDbl(Fields.Value1+Fields.Value2).ToString()

 
Completed
Last Updated: 15 May 2019 13:52 by ADMIN
Suspend the data item error messages and show the NoDataMessage instead. When using a WebServiceDatasource and the used web service returns a response with 400, 401 and 404 HTTP codes.


Completed
Last Updated: 15 May 2019 13:51 by ADMIN
ADMIN
Created by: Nasko
Comments: 1
Category: Reporting
Type: Feature Request
11
There is the newly introduced WebServiceDataSource which enables me to get JSON data from a web service. I'd like to be able to use JSON as a data source for a report without using a web service. For example, the JSON might be embedded inside the report definition, or it might be coming from an external text file (URI or URL), or even pass it programmatically to the report at run-time.
Completed
Last Updated: 15 May 2019 13:51 by ADMIN
Created by: Yannick Patton
Comments: 0
Category: Reporting
Type: Bug Report
1
in the real world, an exception can really occurs in the resolve method, and I want bubble this unknown exception coming from resolve method and not a custom exception written in GetParameters method
Completed
Last Updated: 15 May 2019 13:50 by ADMIN
Drilling from one report to another using dates prior to 1970 do not work and end up getting "parsed" as null. That works correctly for dates greater than or equal to 01/01/1970, since that's the epoch for Unix time, but fails for dates before that.
Completed
Last Updated: 15 May 2019 12:19 by ADMIN
ADMIN
Created by: Peter
Comments: 1
Category: Reporting
Type: Feature Request
0
Add support for PDF Accessibility as described in the https://www.adobe.com/accessibility/pdf/pdf-accessibility-overview.html
Completed
Last Updated: 15 May 2019 12:05 by ADMIN
When the Telerik Report Viewer is deleted from the DOM and the new one is created, the report styles are not loaded
Unplanned
Last Updated: 13 May 2019 07:15 by ADMIN
Created by: Tax ID
Comments: 0
Category: Reporting
Type: Bug Report
3
The Thai character "ฝ่" is not exported properly in PDF. When the report is exported in Docx and then saved as PDF the character is displayed correctly.
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: 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