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.
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
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.
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);
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
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
>
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!