I just updated my Telerik Reporting to 2015 Q2. I'm almost done fixing every obseletes properties and method but one issue remain and I can't find any proper solution to fix it. Here is my code:
Dim GridColumnElements() As Processing.ProcessingElement = GridTable.ChildElements.Find("GridColumnTextBox", True)For i As Integer = 0 To GridColumnElements.Count - 1 Dim ColumnRatio As Double = (GrdField.Columns(i).Width / TotalColumnPixelWidth) Dim ColumnWidth As Unit = TotalGridWidth.Multiply(ColumnRatio) Dim pe As Processing.ProcessingElement = GridColumnElements(i) Dim tb As Processing.TextBox = DirectCast(pe, Processing.TextBox)
Now I get the classic:
"Warning 'Public ReadOnly Property ChildElements As Telerik.Reporting.Processing.ProcessingElement.ElementCollection' is obsolete: 'The Telerik.Reporting.Processing.ProcessingElement.ChildElements property is now obsolete. Use Telerik.Reporting.Processing.ElementTreeHelper.GetChildElements() method instead.'
It doesn't seems to have any method that would suite me well in this case.. any ideas ?
Hi All,
Can we create report book with report designer only ? not using code
Hi All,
I'm getting a weird problem with page size/printable region with reports.
Started getting it in version Q3 2014 and upgraded to Q2 2015 and still getting it.
I designed a sample report real fast using the Band Report wizard to demonstrate the problem (see attached).
I design a report as Portrait Letter using the wizard, margins are 0 for Left and Right in the screenshot (tried .2in,...) It appears that when the reports are rendered they are being scaled down or something. See attached image and note the ruler at the top of the designer and the difference in the Viewer below it...
Its not occurring with any applications like Word/Excel or any other print operation. Tried printing to Printer, XLS and PDF and its all the same.
Any ideas? I've tried playing with margins, paper size,... In code I set the viewer to view the print layout and landscape=false and that's it.
:-s
Thanks
Hi,
I have a telerik reporting WCF self host service to show the report with silverlight report viewer. I noticed that the WCF function fire twice when I run the report.
can anyone tell me the cause.
Thanks in advance
Chandan
public class ProjectSchedule{ public ProjectSchedule() { } public string JobName { get; set; } public DateTime Start { get; set; } public DateTime End { get; set; } public static List<ProjectSchedule> GetSchedule() { return new List<ProjectSchedule>(){ new ProjectSchedule(){ JobName="JOB1", Start=DateTime.Now.AddDays(5), End=DateTime.Now.AddDays(10)}, new ProjectSchedule(){ JobName="JOB2", Start=DateTime.Now.AddDays(5), End=DateTime.Now.AddDays(15)}, new ProjectSchedule(){ JobName="JOB3", Start=DateTime.Now.AddDays(3), End=DateTime.Now.AddDays(7)}, new ProjectSchedule(){ JobName="JOB3", Start=DateTime.Now.AddDays(10), End=DateTime.Now.AddDays(18)} }; }}Hello,
We are using Telerik Reporting in a WebApp that is open all day in a browser for the users as they do their work. The Reports are Ajax reloaded in the same report view on demand, but if the reporting is not touched for longer than an hour we get an exception from Telerik. If they refresh the page, it will work fine again, however they will loose the work they are doing. How can we hold a report view open for a longer period of time?
{"message":"","exceptionMessage":"Client with ID '092435-2fa6' not found. Expired.","exceptionType":"Telerik.Reporting.Services.Engine.InvalidClientException","stackTrace":" at Telerik.Reporting.Services.Engine.ReportEngine.WithClient[T](String clientID, Func`2 func)\r\n at Telerik.Reporting.Services.WebApi.ReportsControllerBase.CreateInstance(String clientID, ClientReportSource reportSource)\
Is there is a Cache setting we need to change to improve this time out?
Thank you.
Hi all
I'm using silverlight report viewer I'm calling it with the WCF Service but the Service is calling class 4 times I have attached the screen shot of it . because of calling 4 Times the report is loading slowly how rectify it . and can we use the html 5 report viewer instead of silverlight report viewer?
Thanks
Prashanth