Telerik Forums
Reporting Forum
1 answer
95 views

hi,

I am trying to create a report in hebrew. in the visual studio designer all seems correct (also in internet explorer, I know right?).

however in chrome the labels are shifting in the amount of their length.. 

I've attached two pictures, one from IE, and one from chrome. please help.. I didn't found any thread on this issue..

Thanks.

 

Nasko
Telerik team
 answered on 22 Jun 2016
1 answer
64 views
I have a report on the 1000 records.I want to single page display only 10 records, that would eventually get 100 pages and the ability ti use NextPage() and PreviousPage() in HTML5 Report Viewer. What wais are there?
Nasko
Telerik team
 answered on 22 Jun 2016
1 answer
781 views
I have a report on the 1000 records.I want to single page display only 10 records, that would eventually get 100 pages and the ability ti use NextPage() and PreviousPage in HTML5 Report Viewer. What wais are there?
Nasko
Telerik team
 answered on 22 Jun 2016
3 answers
195 views

I have a report that generated in preview mode no problem, when I export to PDF it looks fine but when I export to RTF it adds in a blank page to the report.

This is really unhelpful as it means that it prints out incorrectly.

My client needs a way to edit the document in word so need the Edit functionality

Borders are set at 1cm and page width is 18cm.

I see there are some issues with RTF, 

http://docs.telerik.com/reporting/designing-reports-considerations-rtf

Does anyone know why this is, its really annoying, surley all exported files should look the same 

 

Nasko
Telerik team
 answered on 22 Jun 2016
5 answers
225 views

I was playing around with having dynamically hidden columns (hiding columns with no data) when I noticed some strange behaviour. In my data, I have quite a few potential columns, however it's rare that more than half of them have data (hence hiding them). So, I made a really wide table (say 40cm) with all columns and then programmatically hid the columns - works great. My page size is set to Legal Landscape, so I have about 30cm of space. When columns are hidden, there is no horizontal overflow and everything fits on a single page. However, if there are enough columns visible to cause the horizontal overflow, the extra content is properly moved to another page - the problem is that other tables in the report get corrupted and only the first column is visible.

 

I have attached a couple images of a sample report that exhibits this behaviour. I'm happy to provide the original, however I don't believe I'm allowed to attach report files.

Stef
Telerik team
 answered on 22 Jun 2016
7 answers
259 views
Hi,

I've just started working with Telerik Reporting and stumbled upon an issue I was not able to find a solution for.

I want to create a simple invoice with multiple items and pages (depending of the number of items). But I would like to have a sub-total at the bottom of every page, this sub-total should represent the accumulated amount of the page itself and all previous pages. The final amount should appear at the end of the invoice (last page).

If have added two sample pages (first and second (last page in this case)) to clarify what I want to archive.

Could you give me some assistance, any hint?


Kind Regards
Jasper
Top achievements
Rank 1
 answered on 21 Jun 2016
5 answers
427 views
I'm trying to find a Reporting tool that allows us to embed the designer in our application. 

Use Case - When we install our product at our customer site, we'd like to allow the customer to copy our standard reports and modify them as they would like.  Is it possible to embed the Telerik report designer in our UI so a user could drag and drop the Properties/Images/Text that we have to where they would want them and then save these reports?

Thanks,

Brandon
Stef
Telerik team
 answered on 21 Jun 2016
10 answers
1.2K+ views

Hello everyone

I'm using Telerik ReportViewer for about one or two years now without any problems. But since the last update, I'm not able to print a report using the printer name property. I'm using the following code to print a report:

IReportDocument repDocList = new Fertigungsliste("85856917", "1");
 
// set printer settings
PrinterSettings printSet = new PrinterSettings();
printSet.Copies = 1;
printSet.PrinterName = @"\\bbfs\ADM51";
 
// create print controller
PrintController printCtrl = new StandardPrintController();
 
// create report processor
ReportProcessor repProc = new ReportProcessor();
repProc.PrintController = printCtrl;
 
InstanceReportSource repSrc = new InstanceReportSource();
repSrc.ReportDocument = repDocList;
 
repProc.PrintReport(repSrc, printSet);

Unfortunately this code doesn't print the report anymore. If I delete

printSet.PrinterName = @"\\bbfs\ADM51";

it works. Then it uses the default windows printer. But this does not help me. I need to set the printer name like in the example above.

Is there a bug in the latest version of reporting?

Suggestions appreciated

Regards,
Danilo

Stef
Telerik team
 answered on 21 Jun 2016
6 answers
257 views
Hi,

according to the release history of Telerik Reporting R2 2016 the WPF ReportViewer now supports showing reports from Telerik Reporting REST Service. So I implemented a web application as described in the docs (http://docs.telerik.com/reporting/telerik-reporting-rest-host-http-service-using-web-hosting) and setup a WPF client application with the help of these articles:
http://docs.telerik.com/reporting/wpf-report-viewer-howto-use-it-with-reportserver
http://docs.telerik.com/reporting/report-engine-connectionstring#rest-service-engine

The XAML of the client now looks as follows:
1.<tr:ReportViewer x:Name="ReportViewer1" HorizontalAlignment="Stretch" ReportEngineConnection="engine=RestService;uri=http://localhost:19021/api/reports">
2.    <tr:ReportViewer.ReportSource>
3.        <telerikReporting:UriReportSource Uri="TestReport.trdp" />
4.    </tr:ReportViewer.ReportSource>
5.</tr:ReportViewer>


I also tried setting the Uri-Property of the UriReportSource to the full Uri or leaving out the trdp extension but the viewer only contains this error message:

Attempt by method 'Telerik.Reporting.Services.HttpClient.HttpRequestHelper.GetResponseFromPost(System.Net.Http.HttpResponseMessage)' to access method 'Telerik.Reporting.Services.HttpClient.HttpRequestHelper.GetResponseFromPost<T>(System.Net.Http.HttpResponseMessage, System.Collections.Generic.IEnumerable`1<System.Net.Http.Formatting.MediaTypeFormatter>)' failed.

Because I couldn't find much documentation about using the REST services with the WPF ReportViewer I could use some help.

Thanks
Matthias
Stef
Telerik team
 answered on 21 Jun 2016
1 answer
79 views

we have to display telerik report in asp.net mvc web page. We are using telerik report viewer to display report and able to generate report on first time, but when we try to see again (click again on report button to generate report) then it is not hitting controller method.

Any help in this regard is appreciated!

Stef
Telerik team
 answered on 20 Jun 2016
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?