hi
when i export grid and gauge to PDF that have Unicode char its not readable..what should i do?
its very important for me.please help me.
its my code.
<script>
$("button").on("click", function () {
var grid = $("#grid").data("kendoGrid");
var progress = $.Deferred();
kendo.drawing.drawDOM($("#gauge-container"))
.done(function (header) {
grid._drawPDF(progress)
.then(function (root) {
return kendo.drawing.exportPDF(root, { multiPage: true });
})
.done(function (dataURI) {
kendo.saveAs({
dataURI: dataURI,
fileName: "test.pdf"
});
progress.resolve();
})
});
//})
});
</script>
Does anyone know a good tutorial on how to use the reports on asp.net MVC 5 / Razor using view and controllers?
Also for this version is the only option to use the standalone editor to create the report ?
Thanks
How can I modify ReportViewer 1q 2009 export option to allow users export to pdf and .csv only. I need to remove all other export options.
Thank you.
Galina.
I'm essentially new to the Telerik reports, I've fixed a few reports, but that's the extent of my knowledge. I'm looking for recommendations on how I can implement them. Here's what I was thinking but I have no idea where to start.
Essentially I'm trying to get to a point where I can dynamically add reports to the environment without any need to modify the application. Any suggestions are welcome.
How can I populate the display members and value members in the designer.
I found this in the net:this.
ReportParameters["MyReportParameter"].Value = new string[] { "one", "two", "three" };
to populate the display members, how can I populate the value members from with 1,2,3
I create a report in the designer and the headers and records are repeating.
For example I have 10 records and they are repeating over and over
How I can avoid that?
Hello I'm having difficulty in creating a report with two logical pages in one physical page . Initially performed the following steps to divide the report into columns ( logical pages ) : - In the properties of my report I went on settings page and set two columns. Added the table to display the data and is not continued in the second logical page . Its continuation is of the second physical page and the data is only displayed in the first column of the report . I do not know what to do . Thanks in advance.
Hi there,
I am trying to set picturebox with an image in telerik reporting, but I found that image in picturebox becomes fuzzy while the original image(resides on local) is quite clear. I don't understand, why it become fuzzy when I set to picturebox. I have tried to use high qulity image, high DPI Image but didn't work any of these. Every time image is fuzzy. I have attached the original image and the snap-shot of screen where pictureBox is set alogn with its properties on right most of the snap. Please provide every possible solution that would be helpfull.
Dim
report
As
TimeAndAttendance.TimeAndAttendanceReport =
New
TimeAndAttendance.TimeAndAttendanceReport()
GenerateAndSendReportByRequest(report)
Public
Shared
Sub
GenerateAndSendReportByRequest(
ByVal
report
As
Telerik.Reporting.IReportDocument)
Dim
reportProcessor
As
New
Telerik.Reporting.Processing.ReportProcessor()
Dim
deviceInfo
As
Hashtable =
New
Hashtable()
deviceInfo(
"FontEmbedding"
) =
"Subset"
Try
Dim
result
As
Telerik.Reporting.Processing.RenderingResult = reportProcessor.RenderReport(
"PDF"
, report, deviceInfo)
Catch
ex
As
Exception
End
Try
End
Sub