Hi,
I need to hide some columns in a table.
I tried some programmatically approaches saw seen in the forum but none worked for me.
At the end i try to filter column groups as suggested by admin, this work, columns are hidden but the table don't shrink its width and
blank pages appear in the report.
There is a way to hide columns (using columns Group filter) and resize table to avoid blank pages
Thank you very much
Andrea
I have the need to print off files along with my report. for example, printing a sales order with a PDF file of each item on the order.
i see that image files work great so the concept would be the same, but to call the PDFs file instead.
I have read that we can add custom functions so was hoping someone could share some ideas on how this would be approached.
the PDFs would ideally be within a container so we could control where within the report they would print, but I would even take it printing on a new page.
So in summary, I want to add a pdf like I would add an image, specify a field in my query that contains the path to my PDF, size the pdf container and be done.
any ideas?
Hi All,
I have created a table report in standalone report designer . It has 1000 number of rows so i want to add scroll bar in table please guide me.
Thanks,
Prashant
I am using the report processor in Telerik Reporting Q1 2016 to render a report directly to a XLSX, e.g.:
var deviceInfo = new System.Collections.Hashtable();
var reportProcessor = new Telerik.Reporting.Processing.ReportProcessor();
var result = reportProcessor.RenderReport("XLSX", instanceReportSource, deviceInfo);
The problem is that the XML files inside the XLSX file container all begin with a Byte Order Mark (EF BB BF). This is causing one of my customer's open source libraries to fail on reading the XLSX file.
If I open the exported file in Excel and then save it again, the BOM are removed.
So, is there a way to prevent the generation of the BOM in the first place?
How can we set up report to "grow" Pictureboxes dynamically in vertical directions, ie. 4 boxes per row. I was thinking either as positioned as independant pictureboxes or Pictureboxes inside a table.
(Using master / detail to grow in horizontal direction is not a problem.)
The question is when developing report in Report Designer.
/SwanB
Hi,
I want to use report designer to create a report, and then import it into a WinForms application and deply as a ClickOnce application.
I need to package up the ODP.NET driver as part of ClickOnce, but I dont see it as a dependency to flag as "Include" in my assembly.
I only see the Oracle.ManagedDataAccess.dll in the list of Application Files to include, if I manually add a redundant DataSource to my project.
So my question is, am I taking the correct approach to ensure my users will have the Oracle driver installed, by introducing a blank ODP.NET data source just to get the .dll in my assembly?
As an alternative, I could actually "use" a data source I add to my WinForms project and swap out the details in the <DataSources><SqlDataSource> of my report XML definition to use a project level defined data source, but am not sure how to do that.
Any advice appreciated.
Regards
Stephen
Hi all,
I have created a dashboard like of of sales in standalone report designer as shown in . So in my all chart setting disturbed when send them via email in designer. But in of Sales Dashboard all charts are remains at the same place when clicked on print preview.Can you tell me why my dashboard charts disturbed means going up or down (Changes their place) during sending them via email.
please tell me how I can fix my chart during sending them in .
I know that we can do certain manipulation when exporting to CSV by using CSV device information settings. By doing those manipulations I was able to obtain a CSV that have the following example format.
Customer;First Name;Janitha;Last Name;Tennakoon;Address;Kandy;date;04/04/2016;Sender;Name;J.J.H.Silva;City;Colombo
What I need is like the following format. (roughly)
Customer
First Name;Last Name; Address;date
Janitha;Tennkoon;Kandy;04/04/2016
Sender
Name;City
J.J.H.Silva;Colombo
Here Customer and Sender details are rendered into two different lists (Attached Report Explorer structure). I want to know whether I can export like this in CSV? .