Hi there,
I have to print a group of invoices of different clients in one .pdf, and I need to add an extra blank page for each invoice that has odd pages count, because I need to print them using double-side print.
Example:
Invoice #1: 2 pages
Invoice #2: 1 page
Invoice #3: 1 page
I need to print a pdf with 6 pages (page 4 and 6 should be empty).
I'm using Reporting Q3 2013
Thanks in advance.
I'm calling API through web service data source. and in that there is one array. I want to pass that in tables, line chart, and other charts. It is not working with any of the chart or table or any component. can someone help me to how to iterate those values in any of the chart or table or to access the elements in web report designer.
This is the Screenshot of the Explorer Tab. Here count is the number and entries is array.
I'm running Telerik Reporting 16.2.22.1109 on windows 10 and just got the unexpected error during work:
System.Xml.XmlException: Root element is missing. at System.Xml.XmlTextReaderImpl.Throw(Exception e) at System.Xml.XmlTextReaderImpl.ParseDocumentContent() at System.Xml.XmlReader.MoveToContent() at Telerik.Reporting.Serialization.ObjectReader.Deserialize(IResourceHandler handler) at Telerik.Reporting.XmlSerialization.XmlSerializerBase.Deserialize(TextReader reader, IResourceHandler resourceHandler) at Telerik.ReportDesigner.Packages.ReportDesigner.Serialization.XmlDocDataHandler.DeserializeReport(IDesignerLoaderHost targetHost) at Telerik.ReportDesigner.Packages.ReportDesigner.Serialization.ReportDocumentDesignerLoader.PerformLoad(IDesignerSerializationManager serializationManager)
What caused this and how to fix it?
AD
Hello,
I am trying to see what option is the best for making report book in run time in my angular application.
In the article posted by you : https://docs.telerik.com/reporting/knowledge-base/how-to-display-reportbook-in-viewer , the third solution is not recommended but that solution explains what I need, and that is that users can check reports which they want to merge in a report book, and do it by themselves and not by me in design time. So my question is why this solution is not recommended? Is there any bugs, any problems or this is just not working properly ?
Thanks in advance!
Tamara
From where to download file
telerikReportViewer-17.0.23.118.min.js
After migrating our Reports REST service from a VM to an Azure App Service we are no longer able to print using the vector (EMF) format. I found this article from 2018 recommending we use raster/PNG as the print output: https://docs.telerik.com/reporting/knowledge-base/unable-to-print-reports-from-azure-environment. Using this setting works but results in some reports being 20MB+ when printing. Viewing reports using vectors works and saving them as PDF vector works as well. Is there an update or another way to enable printing with vectors from Azure App Service?
I'm trying to implement the REST Custom Report Source Resolver in a .net core web api. But the reports are not showing even the URL is not working. I have used a middleware to connect this to the application. Bellow you can see the regarding. cods.
middleware class
public class TelerikReportingMiddleware
{
private readonly RequestDelegate _next;
public TelerikReportingMiddleware(RequestDelegate next)
{
_next = next;
}
public async Task Invoke(HttpContext context, IAPIService aPIService)
{
string[] path = !string.IsNullOrEmpty(context.Request.Path.Value) ? context.Request.Path.Value.Split("/") : new string[4];
if (path.Length > 2 && path[2] != null && path[2].Equals("telerikreports", StringComparison.CurrentCultureIgnoreCase))
{
if (context.Request.RouteValues["controller"] == null)
{
context.Request.RouteValues["controller"] = path[2];
}
if (context.Request.RouteValues["action"] == null)
{
context.Request.RouteValues["action"] = path[3];
}
if (!context.Request.Headers.ContainsKey("IntegrationID"))
{
var appId = "1";
context.Request.Headers.Add("IntegrationID", appId);
}
}
await _next(context);
}
private async Task ReturnErrorResponse(HttpContext context)
{
context.Response.ContentType = "application/json";
context.Response.StatusCode = (int)HttpStatusCode.BadRequest;
await context.Response.WriteAsJsonAsync("Bad Request: Integration Not Defined, " +
"Request ID Sould be defined in the Header section of the request");
}
}
Report Resolver class
public class BLReportResolver : IReportResolver
{
private readonly string _serverPath;
public BLReportResolver()
{
_serverPath = Path.Combine(Directory.GetCurrentDirectory(), "TelerikReports");
}
public ReportSource Resolve(string reportId)
{
try
{
/* get path to report */
var sourceReportSource = new UriReportSource { Uri = Path.Combine(_serverPath, reportId) };
//retrieve an instance of the report
var reportPackager = new ReportPackager();
using (var sourceStream = File.OpenRead(sourceReportSource.Uri))
{
var report = (Report)reportPackager.UnpackageDocument(sourceStream);
var reportInstance = new InstanceReportSource
{
ReportDocument = report
};
return new InstanceReportSource { ReportDocument = reportInstance.ReportDocument };
}
}
catch (Exception e)
{
Console.WriteLine(e);
return null;
}
}
}
controller class
[Route("api/[controller]")]
[ApiController]
public class TelerikReportsController : ReportsControllerBase
{
static readonly ReportServiceConfiguration configurationInstance =
new ReportServiceConfiguration
{
HostAppId = "TelerikRESTReports",
Storage = new FileStorage(),
ReportResolver = new BLReportResolver(),
ReportSourceResolver = new UriReportSourceResolver(Path.GetFullPath("~/TelerikReports"))
};
public TelerikReportsController()
{
this.ReportServiceConfiguration = configurationInstance;
}
}
what can be the issue?
When using the WPF report viewer the server returns a 404 with the following error:
Message: Resource with name 'tooltips-document' not found.
Exception type: Telerik.Reporting.Services.Engine.ResourceNotFoundException
Failed method: Telerik.Reporting.Services.Engine.DocumentResources.GetResource
Call Stack:
Telerik.Reporting.Services.Engine.ResourceNotFoundException:
at Telerik.Reporting.Services.Engine.DocumentResources.GetResource (Telerik.Reporting, Version=16.1.22.622, Culture=neutral, PublicKeyToken=a9d7983dfcc261be)
at Telerik.Reporting.Services.Engine.ReportEngine.GetResource (Telerik.Reporting, Version=16.1.22.622, Culture=neutral, PublicKeyToken=a9d7983dfcc261be)
at Telerik.Reporting.Services.WebApi.ReportsControllerBase.GetResource (Telerik.Reporting.Services.WebApi, Version=16.1.22.622, Culture=neutral, PublicKeyToken=a9d7983dfcc261be)
at lambda_method (Anonymously Hosted DynamicMethods Assembly, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null)
at System.Web.Http.Controllers.ReflectedHttpActionDescriptor+ActionExecutor+<>c__DisplayClass6_2.<GetExecutor>b__2 (System.Web.Http, Version=5.2.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35)
at System.Web.Http.Controllers.ReflectedHttpActionDescriptor+ActionExecutor.Execute (System.Web.Http, Version=5.2.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35)
at System.Web.Http.Controllers.ReflectedHttpActionDescriptor.ExecuteAsync (System.Web.Http, Version=5.2.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35)
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)
at System.Web.Http.Controllers.ApiControllerActionInvoker+<InvokeActionAsyncCore>d__1.MoveNext (System.Web.Http, Version=5.2.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35)
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)
at System.Web.Http.Filters.ActionFilterAttribute+<CallOnActionExecutedAsync>d__6.MoveNext (System.Web.Http, Version=5.2.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35)
at System.Web.Http.Filters.ActionFilterAttribute+<CallOnActionExecutedAsync>d__6.MoveNext (System.Web.Http, Version=5.2.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35)
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)
at System.Web.Http.Filters.ActionFilterAttribute+<ExecuteActionFilterAsyncCore>d__5.MoveNext (System.Web.Http, Version=5.2.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35)
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)
at System.Web.Http.Controllers.ActionFilterResult+<ExecuteAsync>d__5.MoveNext (System.Web.Http, Version=5.2.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35)
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)
at System.Web.Http.Filters.AuthorizationFilterAttribute+<ExecuteAuthorizationFilterAsyncCore>d__3.MoveNext (System.Web.Http, Version=5.2.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35)
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)
at System.Web.Http.Controllers.ExceptionFilterResult+<ExecuteAsync>d__6.MoveNext (System.Web.Http, Version=5.2.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35)
URL: https://xxxx/api/reports/clients/a6d7fc8eb5a/instances/262c6bd8320/documents/09a7b522d8a61733198a47/resources/tooltips-document
Note the report still renders but the exception is captured and logged on every report request.
Telerik Reporting is crashing with "Exception message: Font family 'Arial' has no available style"
This is an MVC asp.net framework 4 application using Telerik Reporting 12.1.18.620 and running in server 2012 via IIS 8.0.9200.16384
There is another app pool on the same server and we installed the same application for a test, and it does not exhibit this issue.
The font does appear to be installed, if we check the Windows fonts.
We have recycled the app pool with this app and the error persists. We have not rebooted the machine. We have not re-installed the problematic app yet.
Is there a troubleshooting procedure or steps to correct this issue?
Event code: 3005
Event message: An unhandled exception has occurred.
Event time: 2/28/2023 6:49:14 PM
Event time (UTC): 2/28/2023 11:49:14 PM
Event ID: d6a7d520b6674898aff8ca5c2fdedabd
Event sequence: 21426
Event occurrence: 76
Event detail code: 0
Application information:
Application domain: /LM/W3SVC/2/ROOT-1-133220978654400636
Trust level: Full
Application Virtual Path: /
Application Path: C:\inetpub\wwwroot\xxx\
Machine name: PSE
Process information:
Process ID: 12616
Process name: w3wp.exe
Account name: IIS APPPOOL\xxx
Exception information:
Exception type: ArgumentException
Exception message: Font family 'Arial' has no available styles
at Telerik.Reporting.Drawing.FontExtensions.GetDefaultFontStyle(FontFamily fontFamily) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing.Common\FontExtensions.cs:line 108
at Telerik.Reporting.Drawing.FontExtensions.GetStyle(IFont font) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing.Common\FontExtensions.cs:line 37
at Telerik.Reporting.Drawing.FontExtensions.ToGdiFont(IFont font) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing.Common\FontExtensions.cs:line 58
at Telerik.Reporting.Processing.GdiFontInfoCache.CreateValue(IFont font) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\GdiFontCache.cs:line 54
at Telerik.Reporting.Processing.GdiFontCache`1.GetValue(IFont font) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\GdiFontCache.cs:line 91
at Telerik.Reporting.Processing.MeasureContext.CalculateLineHeight(IFont font) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\MeasureContext.cs:line 99
at Telerik.Reporting.Processing.TextRenderer.MeasureText(IMeasureContext context, String text, IFont font, RectangleF layoutRectangle, TextFormat textFormat, Boolean multiline, Int32& charactersFitted) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\TextRenderer.cs:line 147
at Telerik.Reporting.Processing.TextBoxUtil.MeasureTextContainer(ITextContainer textContainer, RectangleF layoutBounds, IMeasureContext context) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\TextBoxUtil.cs:line 95
at Telerik.Reporting.Processing.TextBox.MeasureItem(IMeasureContext context, SizeLU availableClientSize, Boolean canGrow) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\TextBox.cs:line 204
at Telerik.Reporting.Processing.TextBox.MeasureItem(IMeasureContext context, SizeLU availableClientSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\TextBox.cs:line 134
at Telerik.Reporting.Processing.TextBox.MeasureContent(IMeasureContext context, SizeLU availableClientSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\TextBox.cs:line 125
at Telerik.Reporting.Processing.LayoutElement.MeasureCore(IMeasureContext context, SizeLU availableSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\LayoutElement.cs:line 125
at Telerik.Reporting.Processing.VisualElement.MeasureCore(IMeasureContext context, SizeLU availableSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\VisualElement.cs:line 343
at Telerik.Reporting.Processing.ProcessingElement.MeasureCore(IMeasureContext context, SizeLU availableSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\ProcessingElement.Layout.cs:line 13
at Telerik.Reporting.Processing.AbsolutePositionLayout.MeasureChildItems(IMeasureContext context, SizeLU availableClientSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\AbsolutePositionLayout.cs:line 296
at Telerik.Reporting.Processing.AbsolutePositionLayout.MeasureContent(IMeasureContext context, SizeLU availableClientSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\AbsolutePositionLayout.cs:line 43
at Telerik.Reporting.Processing.Panel.MeasureContent(IMeasureContext context, SizeLU availableClientSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\Panel.cs:line 113
at Telerik.Reporting.Processing.LayoutElement.MeasureCore(IMeasureContext context, SizeLU availableSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\LayoutElement.cs:line 125
at Telerik.Reporting.Processing.VisualElement.MeasureCore(IMeasureContext context, SizeLU availableSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\VisualElement.cs:line 343
at Telerik.Reporting.Processing.ProcessingElement.MeasureCore(IMeasureContext context, SizeLU availableSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\ProcessingElement.Layout.cs:line 13
at Telerik.Reporting.Processing.AbsolutePositionLayout.MeasureChildItems(IMeasureContext context, SizeLU availableClientSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\AbsolutePositionLayout.cs:line 296
at Telerik.Reporting.Processing.AbsolutePositionLayout.MeasureContent(IMeasureContext context, SizeLU availableClientSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\AbsolutePositionLayout.cs:line 43
at Telerik.Reporting.Processing.ReportSectionBase.MeasureContent(IMeasureContext context, SizeLU availableClientSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\ReportSectionBase.cs:line 165
at Telerik.Reporting.Processing.LayoutElement.MeasureCore(IMeasureContext context, SizeLU availableSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\LayoutElement.cs:line 125
at Telerik.Reporting.Processing.VisualElement.MeasureCore(IMeasureContext context, SizeLU availableSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\VisualElement.cs:line 343
at Telerik.Reporting.Processing.ProcessingElement.MeasureCore(IMeasureContext context, SizeLU availableSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\ProcessingElement.Layout.cs:line 13
at Telerik.Reporting.Processing.StackLayout.MeasureContent(IMeasureContext context, SizeLU availableClientSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\StackLayout.cs:line 27
at Telerik.Reporting.Processing.Group.MeasureContent(IMeasureContext context, SizeLU availableClientSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\Group.cs:line 204
at Telerik.Reporting.Processing.LayoutElement.MeasureCore(IMeasureContext context, SizeLU availableSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\LayoutElement.cs:line 125
at Telerik.Reporting.Processing.VisualElement.MeasureCore(IMeasureContext context, SizeLU availableSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\VisualElement.cs:line 343
at Telerik.Reporting.Processing.ProcessingElement.MeasureCore(IMeasureContext context, SizeLU availableSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\ProcessingElement.Layout.cs:line 13
at Telerik.Reporting.Processing.StackLayout.MeasureContent(IMeasureContext context, SizeLU availableClientSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\StackLayout.cs:line 27
at Telerik.Reporting.Processing.Report.MeasureContent(IMeasureContext context, SizeLU availableClientSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\Report.Layout.cs:line 41
at Telerik.Reporting.Processing.LayoutElement.MeasureCore(IMeasureContext context, SizeLU availableSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\LayoutElement.cs:line 125
at Telerik.Reporting.Processing.VisualElement.MeasureCore(IMeasureContext context, SizeLU availableSize) in c:\temp\reporting\RBu
Request information:
Request URL: https://xxx.com:443/Telerik.ReportViewer.axd?instanceID=db033a11a4b84ec385f5c117de2d43d5&optype=Report&PageIndex=0&RenderID=1759b172aa0945aa858db8bf20357481&RenderingFormat=HTML5Interactive
Request path: /Telerik.ReportViewer.axd
User host address: 107.129.213.166
User:
Is authenticated: False
Authentication Type:
Thread account name: IIS APPPOOL\xxx
Thread information:
Thread ID: 56
Thread account name: IIS APPPOOL\xxx
Is impersonating: False
Stack trace: at Telerik.Reporting.Drawing.FontExtensions.GetDefaultFontStyle(FontFamily fontFamily) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing.Common\FontExtensions.cs:line 108
at Telerik.Reporting.Drawing.FontExtensions.GetStyle(IFont font) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing.Common\FontExtensions.cs:line 37
at Telerik.Reporting.Drawing.FontExtensions.ToGdiFont(IFont font) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing.Common\FontExtensions.cs:line 58
at Telerik.Reporting.Processing.GdiFontInfoCache.CreateValue(IFont font) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\GdiFontCache.cs:line 54
at Telerik.Reporting.Processing.GdiFontCache`1.GetValue(IFont font) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\GdiFontCache.cs:line 91
at Telerik.Reporting.Processing.MeasureContext.CalculateLineHeight(IFont font) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\MeasureContext.cs:line 99
at Telerik.Reporting.Processing.TextRenderer.MeasureText(IMeasureContext context, String text, IFont font, RectangleF layoutRectangle, TextFormat textFormat, Boolean multiline, Int32& charactersFitted) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\TextRenderer.cs:line 147
at Telerik.Reporting.Processing.TextBoxUtil.MeasureTextContainer(ITextContainer textContainer, RectangleF layoutBounds, IMeasureContext context) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\TextBoxUtil.cs:line 95
at Telerik.Reporting.Processing.TextBox.MeasureItem(IMeasureContext context, SizeLU availableClientSize, Boolean canGrow) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\TextBox.cs:line 204
at Telerik.Reporting.Processing.TextBox.MeasureItem(IMeasureContext context, SizeLU availableClientSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\TextBox.cs:line 134
at Telerik.Reporting.Processing.TextBox.MeasureContent(IMeasureContext context, SizeLU availableClientSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\TextBox.cs:line 125
at Telerik.Reporting.Processing.LayoutElement.MeasureCore(IMeasureContext context, SizeLU availableSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\LayoutElement.cs:line 125
at Telerik.Reporting.Processing.VisualElement.MeasureCore(IMeasureContext context, SizeLU availableSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\VisualElement.cs:line 343
at Telerik.Reporting.Processing.ProcessingElement.MeasureCore(IMeasureContext context, SizeLU availableSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\ProcessingElement.Layout.cs:line 13
at Telerik.Reporting.Processing.AbsolutePositionLayout.MeasureChildItems(IMeasureContext context, SizeLU availableClientSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\AbsolutePositionLayout.cs:line 296
at Telerik.Reporting.Processing.AbsolutePositionLayout.MeasureContent(IMeasureContext context, SizeLU availableClientSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\AbsolutePositionLayout.cs:line 43
at Telerik.Reporting.Processing.Panel.MeasureContent(IMeasureContext context, SizeLU availableClientSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\Panel.cs:line 113
at Telerik.Reporting.Processing.LayoutElement.MeasureCore(IMeasureContext context, SizeLU availableSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\LayoutElement.cs:line 125
at Telerik.Reporting.Processing.VisualElement.MeasureCore(IMeasureContext context, SizeLU availableSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\VisualElement.cs:line 343
at Telerik.Reporting.Processing.ProcessingElement.MeasureCore(IMeasureContext context, SizeLU availableSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\ProcessingElement.Layout.cs:line 13
at Telerik.Reporting.Processing.AbsolutePositionLayout.MeasureChildItems(IMeasureContext context, SizeLU availableClientSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\AbsolutePositionLayout.cs:line 296
at Telerik.Reporting.Processing.AbsolutePositionLayout.MeasureContent(IMeasureContext context, SizeLU availableClientSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\AbsolutePositionLayout.cs:line 43
at Telerik.Reporting.Processing.ReportSectionBase.MeasureContent(IMeasureContext context, SizeLU availableClientSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\ReportSectionBase.cs:line 165
at Telerik.Reporting.Processing.LayoutElement.MeasureCore(IMeasureContext context, SizeLU availableSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\LayoutElement.cs:line 125
at Telerik.Reporting.Processing.VisualElement.MeasureCore(IMeasureContext context, SizeLU availableSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\VisualElement.cs:line 343
at Telerik.Reporting.Processing.ProcessingElement.MeasureCore(IMeasureContext context, SizeLU availableSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\ProcessingElement.Layout.cs:line 13
at Telerik.Reporting.Processing.StackLayout.MeasureContent(IMeasureContext context, SizeLU availableClientSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\StackLayout.cs:line 27
at Telerik.Reporting.Processing.Group.MeasureContent(IMeasureContext context, SizeLU availableClientSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\Group.cs:line 204
at Telerik.Reporting.Processing.LayoutElement.MeasureCore(IMeasureContext context, SizeLU availableSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\LayoutElement.cs:line 125
at Telerik.Reporting.Processing.VisualElement.MeasureCore(IMeasureContext context, SizeLU availableSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\VisualElement.cs:line 343
at Telerik.Reporting.Processing.ProcessingElement.MeasureCore(IMeasureContext context, SizeLU availableSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\ProcessingElement.Layout.cs:line 13
at Telerik.Reporting.Processing.StackLayout.MeasureContent(IMeasureContext context, SizeLU availableClientSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\StackLayout.cs:line 27
at Telerik.Reporting.Processing.Report.MeasureContent(IMeasureContext context, SizeLU availableClientSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\Report.Layout.cs:line 41
at Telerik.Reporting.Processing.LayoutElement.MeasureCore(IMeasureContext context, SizeLU availableSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\LayoutElement.cs:line 125
at Telerik.Reporting.Processing.VisualElement.MeasureCore(IMeasureContext context, SizeLU availableSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\VisualElement.cs:line 343
at Telerik.Reporting.Processing.ProcessingElement.MeasureCore(IMeasureContext context, SizeLU availableSize) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\ProcessingElement.Layout.cs:line 13
at Telerik.Reporting.Processing.LayoutElement.MeasureElement(LayoutElement elementToMeasure, SizeLU availableSize, IMeasureContext context) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\LayoutElement.cs:line 93
at Telerik.Reporting.Processing.LayoutElement.MeasureElement(LayoutElement elementToMeasure, IMeasureContext context) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing\LayoutElement.cs:line 80
at Telerik.Reporting.Html5Rendering.Html5ReportInteractive.MeasureRootCore(LayoutElement root, PageSettings pageSettings) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Html5Rendering\Html5ReportInteractive.cs:line 23
at Telerik.Reporting.BaseRendering.RenderingExtensionBase.Render(LayoutElement root, Hashtable renderingContext, Hashtable deviceInfo, CreateStream createStreamCallback, EvaluateHeaderFooterExpressions evalHeaderFooterCallback, PageSettings pageSettings) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.BaseRendering\RenderingExtensionBase.cs:line 94
at Telerik.Reporting.BaseRendering.RenderingExtensionBase.Render(Report report, Hashtable renderingContext, Hashtable deviceInfo, CreateStream createStreamCallback, EvaluateHeaderFooterExpressions evalHeaderFooterCallback) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.BaseRendering\RenderingExtensionBase.cs:line 43
at Telerik.Reporting.Processing.ReportProcessor.RenderCore(ExtensionInfo extensionInfo, IList`1 processingReports, Hashtable deviceInfo, IRenderingContext renderingContext, CreateStream createStreamCallback) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing.ReportProcessor\ReportProcessor.RenderReport.cs:line 236
at Telerik.Reporting.Processing.ReportProcessor.RenderCore(String format, IList`1 reports, Hashtable deviceInfo, IRenderingContext renderingContext, CreateStream createStreamCallback) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.Reporting.Processing.ReportProcessor\ReportProcessor.RenderReport.cs:line 157
at Telerik.ReportViewer.WebForms.ReportPageOperation.RenderReport(String format, IList`1 processingReports, Hashtable deviceInfo, IRenderingContext renderingContext) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.ReportViewer.WebForms\ReportPageOperation.cs:line 54
at Telerik.ReportViewer.WebForms.ReportRenderOperation.PerformOperationOverride() in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.ReportViewer.WebForms\ReportRenderOperation.cs:line 66
at Telerik.ReportViewer.WebForms.ReportPageOperation.PerformOperationOverride() in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.ReportViewer.WebForms\ReportPageOperation.cs:line 134
at Telerik.ReportViewer.WebForms.HandlerOperation.PerformOperation(HttpContext context, ICacheManager cacheManager) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.ReportViewer.WebForms\HandlerOperation.cs:line 47
at Telerik.ReportViewer.WebForms.BasicHandler.ProcessRequest(HttpContext context) in c:\temp\reporting\RBuild-31962\Reporting_Build\Source\Code\Telerik.ReportViewer.WebForms\HttpHandler.cs:line 190
at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
at System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
Custom event details: