Telerik Forums
Reporting Forum
2 answers
188 views
Hi,

It might be a good idea to add the possibility to localize the RadComboBox export content (like Acrobat (PDF) file or CSV (comma delimited)).

By the way, where can I find the last base ReportViewer .resx file (Telerik.ReportViewer.WebForms.Resources) ? I guess this one is not the last one ? (http://www.telerik.com/support/kb/reporting/report-viewers/localizing-the-telerik-report-viewer.aspx)

Thank You
A.Boiselle
arnaud
Top achievements
Rank 1
 answered on 30 Sep 2010
3 answers
308 views
Is there any way that i can use the below mentioned business object to generate the report  ?

public class PriliminaryReport {
        public Practitioner Practitioner { get; set; }
        public Patient Patient { get; set; }
        public IEnumerable<Score> Scores { get; set; }
        public long TotalScore { get { return Scores.Select(x => x.SecScore).Sum(); } }
    }


This is a report which contains the patient's Score .

i want patient,practitioner details and section wise score of the patient .

Steve
Telerik team
 answered on 30 Sep 2010
2 answers
151 views
Hello, 

first here is my sln in VS2010:

- BigBrother.DataAccess project: in there I have a DataService class that is used to expose my data. Accessing the data is used via Entity Framework. Currently, im simply calling a member that is used to fetch a list of Establishments.

- BigBrother.MVC.Intranet: in there I have a full intranet website where I want to serve some reports. I have a report folder where I'm trying to create my first report that lists the Establishments that are fetched from my DataService. 

So here's the error im getting when im checking the preview pane:

An error has occurred while processing Report '':
Exception has been thrown by the target of an invocation.
------------- InnerException -------------
The specified named connection is either not found in the configuration, not intended to be used with the EntityClient provider, or not valid.



I know it has something to do with my the connectionString, but ive tried various solutions but none worked...Anyone have been able to do something similar to me?
Pierre-Alain
Top achievements
Rank 1
 answered on 30 Sep 2010
1 answer
81 views
The reporting control will support customer paging? it is, use the database paging method and load data only one page,but not load all the data to memory in one time.
Steve
Telerik team
 answered on 30 Sep 2010
1 answer
95 views
Hi Telerik,

We are currently using your reporting solution and we have liked it so far. There is a bug that we noticed when moving to the last page while the reportviewer is still rendering pages. In this case the reportviewer will hung, displaying "Loading Page"  and never giving control back to the user.

I have tried using the ReportViewerContext IsInProgress bound to the MoveToLastPage RadButton to prevent this behaviour but it didn't help because this property seems to be only true when there are no pages shown. I have seen that the property gets set to false as soon as the first page is rendered.

Any solutions or workarounds will be greatly appreciated,

Peter
Telerik team
 answered on 30 Sep 2010
0 answers
67 views

 

Hello Telerik Team,

I have an issue.
I have a mainreport with a subreport in it.My main report has one parameter and three values for that parameter.
When i use the subreport inside the main report..how can i pass the same parameter values used by the Main report to the subreport.

 

Please provide me an example.
Does the item data binding event solve my problem.

It means for each and every main report record, I should have a corresponding subreport.

Please kindly provide me an example.

Thank you,
Smith

smith spd
Top achievements
Rank 1
 asked on 29 Sep 2010
1 answer
115 views
Dear Telerik Team,

  I think there is an error in your type list of Rendering Extensions for the Telerik Reporting Q2 2010 Documentation.

You write on this page, that for controlling the rendering extensions drop-down menu in the Report Viewer the type of the RTF Renderer is "Telerik.Reporting.ImageRendering.RtfReport, Telerik.Reporting, Version=x.x.x.x, Culture=neutral, PublicKeyToken=a9d7983dfcc261be". If I use this, I get an error, that the Reporting Assembly doesn't contain an object named ImageRendering.RtfReport.

After some searching and testing, I found the correct Type, which is "Telerik.Reporting.RtfRendering.RtfReport,...".

My main problem was, that the error only occurred in the deployed application (deployment always costs a lot time) and not in local setup. So it took me nearly a day to fix this problem.

So please update the documentation, to avoid this error for other users.

Sincerely yours
  Thomas
Peter
Telerik team
 answered on 29 Sep 2010
1 answer
161 views

Hi telerik Team,


In our application we are using Reports.
In that we've using sub reports. In Sub Report design is coming correctly
but when we merge that report in main report ,
the alignment is not coming correctly.

Pls have a glance on the attached snapshots and provide me some solution.


Thanks & Regards
Karthik
Steve
Telerik team
 answered on 29 Sep 2010
0 answers
163 views
Hi
Can anyone help with a problem that has arisen recently? We have some reports developed with Telerik Reporting. Unfortunately, we only use them once per quarter and they were working fine last quarter (ie June). However, we now have problems with them and it is impossible to know where this comes from, as we have since updated to Telerik Reporting Q22010, the latest version of Adove Acrobat 9
prof, etc, etc.

The problem is as follows: all the reports open fine and show the export and print options, but:
- If I select print and then select my AdobePDF writer as the printer, the window to choose the folder to print to freezes every time and the only way to recover is to use task manager to close IE8
- "Save" works but saves to an obscure folder with an obscure file name and an enormous file size (eg 2 MB for a 2-page report!)
- "Open" works but if I then try "Save as" (to local or network drive, with existing or new file name) I get this error: "The document could not be saved. There was a problem reading this document (109)
- If I save to the obscure folder and open it from there in Acrobat 9, and then try save as or document / reduce file size, I get the same error

I can open, save as and reduce file size on PDF files from other websites, so the problem does not appear to be with Acrobat (which I have re-installed twice anyway) or IE8. It seems like Telerik Reporting is producing files which cannot be manipulated by Adobe.

I will be most grateful for any ideas out there.
Living in hope,   Neil
Neil
Top achievements
Rank 1
 asked on 29 Sep 2010
0 answers
136 views
hi ...

i've created one crystal report in windows form and one crystalreportviewer ..

the following is my code..

in form1.cs file

try
{
ExportOptions CrExportOptions;
DiskFileDestinationOptions CrDiskFileDestinationOptions = new DiskFileDestinationOptions();
PdfRtfWordFormatOptions CrFormatTypeOptions = new PdfRtfWordFormatOptions();
CrDiskFileDestinationOptions.DiskFileName = "c:\\csharp.net-informations.pdf";
CrExportOptions = cryRpt.ExportOptions;
{
 CrExportOptions.ExportDestinationType = ExportDestinationType.DiskFile;
 CrExportOptions.ExportFormatType = ExportFormatType.PortableDocFormat;
 CrExportOptions.DestinationOptions = CrDiskFileDestinationOptions;
 CrExportOptions.FormatOptions = CrFormatTypeOptions;
}
 cryRpt.Export();
}
the above code is saving the file into pdf into specified path..

but i dont want to save a file i should get direct print preview and 

have a option to print ..



As we do in web application using crystal report viewer clicking print

and report will be opened in pdf.. and the click print..



i want the same function as we do in web application...

i'm writing code in c#.net 

hope the above explaination will be understood clearly..

vinayak.v
Top achievements
Rank 1
 asked on 29 Sep 2010
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?