Hello,
Is it possible for header from subreports do be shown on the main report? I have four different subreports with their own headers and my main report will not have a header (nor title), so I need in my main report to import header + detail section from subreport.
I think I saw that it could be done by reportBook, but that will not work for me.
Or by some grouping criteria but I am not sure how is that functioning.
Thanks in advance!
Best regards,
Tamara Karadjinovic
Hi Team,
I'm creating a web form application and using Telerik Report Designer 2023 R1. This work fine with string parameter. Then when I am using DateTime parameter on Preview at Configure sqlDataSource its show error "Cannot get preview".
hi Team,
I want to adjust the panel from one column to two column in the report along with other components in the report. will it possible ?
How can I fix it? If you want to export excel that is not CSV. in angular.
We use BlazorNative for Reporting.
In the sample with external parameters, there is the idea shown after submitting the Report:
This works, but from the user perspective it is unclear what is happening. Cause in the Viewer we have this message "0 pages so far..." and after a log processing time, the (big) report shows up, meanwhile the dialog is visible earlier. This leads to confusion of the user.
A better solution would be, setting the Form visible again after the Report is fully displayed.
Is there a event we can catch? Maybe in JavaScript with JsInterterop to gain this information?
I am making a telerik report
However, I want to display a diagonal line in the textbox when a specific value comes in.
I want it to be displayed like this.
this.textBox10.Name = "textBox10"; this.textBox10.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Cm(1.5D), Telerik.Reporting.Drawing.Unit.Cm(0.5D)); this.textBox10.Style.TextAlign = Telerik.Reporting.Drawing.HorizontalAlign.Center; this.textBox10.Style.VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle; this.textBox10.StyleName = "Aspect.TableBody"; this.textBox10.Value = "= IIf(Fields.Name = 'Day', ' ', Fields.Name)";
I wrote the code like this, and first of all, if the data is Day, it is treated as blank, but when the data is Day, I want to display it like an image
When i create report in standalone application with WebServiceDataSource as trdx file i can see section for Authentication with user and password
<Authentication>
<WebServiceBasicAuthentication Password="eYk0jBuZWWwHo1LHgtDHjA==" Username="user" />
</Authentication>
what algorithm do you use to hash password? how it is save?
Hi..
I have this qrcode string
Fields.ProductMasterCode+"|"+ Fields.ProductName +" | "+ Fields.hashstring
after scan barcode, symbol | (pipe) missing.
my qcode setting is
encoder - QRCode
ECI - CP437
ErrorCorrectionLevel - L
Mode - Alphanumeric
I am using Telerik Reporting 12.1.18.620 in my ASP.NET (4.8) web application. It has been working fine for years but I suddenly encountered this error.
public void SetReport()
{
if (hidReportName.Value.Length > 0)
{
var reportPlaintext = hidReportName.Value.QsDecrypt();
var report = string.Format("TelerikReports.{0}, TelerikReports, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", reportPlaintext);
try
{
Type reportType = Type.GetType(report);
IReportDocument reportDocument = (IReportDocument)Activator.CreateInstance(reportType);
Report = reportDocument as Report;
ReportViewer.ReportSource = (ReportSource)reportDocument; //Here is where the error occurs
}
catch (Exception)
{
throw new Exception(String.Format("Error loading Telerik report '{0}'", ReportName.QsDecrypt()));
}
}
I have searched extensively and tried to resolved this error but I am stymied. This is a huge blocker because I can't deploy the latest (non-reporting) code to production until this is fixed. I have been working on this for a week now with no luck.
Please help!