I want to loop a list, the list contains diff table type, which table type I design a table to control the layou
e.g. my object datasource is List<TableData>, TableData contains a field Tabletype,
if Tabletype = Table1, then will show the Table1, other tables will be hidden.
if Tablegtype = Table2, the will show the Table2, other tables will be hidden..
but the preview result have some space lines between tables, I have upload the preview result.
my design layout as below, the report datasource is custom objectdatasource, the table datasource is binding = ReportItem.DataObject
detail
table1
table2
table3
table4
table5
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 settingsPrinterSettings printSet = new PrinterSettings();printSet.Copies = 1;printSet.PrinterName = @"\\bbfs\ADM51";// create print controllerPrintController printCtrl = new StandardPrintController();// create report processorReportProcessor 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>