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
Hi:
We have a project that needs us to load a summary report (e.g a list of ​staff, with its role and location)
into a grid with checkboxes , and a export/print button. When the
exxport/print button is click, all the rows that are checked needs to be
exported into indivdual reports (one report with details such as sales logs for each staff) silently (there is no need to display
the report on screen), can I ask it is possible to do this with telerik
reporting on a MVC project?
Many thanks
William
This is probably a very simple thing but this beginner needs to know.
I have created a report class for my first report and this builds a DLL. Is there any documentation on how to attach this to a web page?
I also read something that hinted at having multiple reports in one class. How is this accomplished and what is the benefit over having multiple classes?
Thanks.