Hello. Telerik replied: "The encryption we use for password protection in PDF rendering is rc4 with key length of 256. Changing the encryption level is not supported at the moment." It would be really useful having this feature. Kind regards. Jose
The Upgrade Wizard should show information about the important changes from the old version up to the current one. I.e, if the client upgrades from R1 2016 to R3 2017, the wizard should aggregate and show all the important changes between these versions.
The Shape item supports custom-generated shapes, but currently this can be achieved only programmatically. It will be useful if the user could provide its own Shape implementations that is supported by the report designer.
I have a requirement to implement multiple report with same content except the table content. Table content is binded through List(by ID, fetch details from table). Can you please guide me, what should be my approach?
Hello, today I inserted many textboxes and fields from data source and draw my own table. Problem is, if more than one field is near one positon i cant position the field exactly. If i marked more than one object i can't set x or y position per input. My idea is, mark all objects, open the position option and set for example from left 1cm, hight from the objects stays the same Thanks!
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.
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.
I understand that for most users, relative URLs don't make a lot of sense in reports. However, we want export our report to PDF and link to other PDF files *in the same directory*. As everything will be distributed as a ZIP file, we cannot know the absolute file path. It should be easy to support this as this is supported by PDF out of the box. Apparently, somewhere in the Reporting code, you remove URLs if they are not absolute. Just remove that check, let us put whatever we like in the hyperlinks. Thanks.
I'm trying to learn more about your reporting tool, but your demo only shows me a blank page. https://demos.telerik.com/reporting/dashboard?&skinName=default
Add support for PDF Accessibility as described in the https://www.adobe.com/accessibility/pdf/pdf-accessibility-overview.html
Hello,
A ReportViewer control compatible with the Kendo Angular UI Framework (not the Kendo Jquery..).
When importing the css files into a project using the new Kendo angular UI framework (ngx) a lot of the components
of kendo are getting broken.
Or is there some workaround?
Best regards
Marc
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.
Using Roboto Medium changes values "FVS!dBTI" should be "EUR Cash" (shift characters by 1) weird !!!!
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
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"]