We used the Telerik Reporting by Dotnet Framwork4.5.2 for a long time.
But now we are going tu update our programing.
We are going tu use Dotnetcore3.1,ubuntu,vscode(IDE) for development.
I saw the DOCS and try the "GETTING STARTED".
But I just find how to use it by vs Studio.
So I want to know that is the Telerik Reporting can be used in linux by vscode?
And show me the docs link Please.
Thank you very much!
Hello,
In ReportController override method -
public override HttpResponseMessage CreateInstance(string clientID, ClientReportSource reportSource)
reportSource.Report gives the required report file name - which is as expected.
However, when same method is called for a sub-report then reportSource.Report returns complete server path of the sub-report rather than only the report file name.
Being new to Telerik, I am not sure if this is the default behaviour.
Is there any way I can change this to only receive the sub-report file name?
Thank you!
I am creating a book table of context. Reading the information on Table of Context (https://docs.telerik.com/reporting/table-of-contents) it seems all I need to do is add the field name to the TocText property.
When I create the book, the table of context does not automatically assign the style levels to the groups, all the entries seem to be using Style 1. Is there something I need to configure in the TocText property or elsewhere?
I have been given the task to look at a pdf export that can now export in languages with non latin characters (e.g. chinese/japanese/etc)
the exports just show squares instead of the characters which are displayed correctly in the preview.
I believe I need to embed a suitable font but I'm not having much luck. Am I missing something or approaching the problem in the wrong way?
My export function looks like this:
exportPdf: function (domElementId, fileName, landscape) {
kendo.pdf.defineFont({
"unicode-font": '../fonts/Unicode/unicode-font.ttf'
});
kendo.drawing.drawDOM('#' + domElementId, {
forcePageBreak: ".page-break",
paperSize: "A4",
landscape: typeof landscape !== 'undefined' ? landscape : false,
margin: "1cm",
template: $("#pdf-page-template").html(),
})
.then(function (group) {
return kendo.drawing.exportPDF(group, {});
})
.done(function (data) {
kendo.saveAs({
dataURI: data,
fileName: fileName + ".pdf"
});
});
}
I'm wondering if the relative path is the problem but I don't see any errors. I didn't set this up and have very little experience with your tools so I'm sure I am just missing something obvious.
Thanks for your help.
Telerik.Reporting Nuget package contains assembly Telerik.Reporting.OpenXmlRendering.2.7.2.dll.
This assembly requires installed DocumentFormat.OpenXml v2.7.2. But this dependency is missing in Telerik.Reporting.nuspec.
I want to make it so that if there is only one available option for a report parameter then it isn't visible.
Right now the best I can do is have it just have it select the first item and have the user ignore the drop down if they don't need it.