Hi,
We are using Telerik Reporting (HTML5 Report Viewer) as main reporting solution in our web application (html5, Angular.JS, KendoUI, not based on ASP.NET). As a long lasting Progress partner, the company I work for just migrated to OpenEdge 11.6 in order to use the Pacific AppServer, and all our API's will be exposed using the Progress way (REST / ABL Web App projects) and not the Microsoft way (WebAPI).
In this scenario, how is it possible to implement the Telerik Reporting REST Service so that it's hosted on the Pacific AppServer? Any idea is welcome!
If you need more information, please let me know.
Best regards,
Mircea
Hello,
I have a very simple scenario where I want to load a report created with the standalone designer in a WPF ReportViewer.
[Code Behind for Main Window]
InitializeComponent();
ReportViewer1 = new Telerik.ReportViewer.Wpf.ReportViewer();
Telerik.Reporting.UriReportSource uriReportSource = new Telerik.Reporting.UriReportSource();
uriReportSource.Uri = @"./yop.trdx";
this.ReportViewer1.ReportSource = uriReportSource;
ReportViewer1.RefreshReport();
The ReportViewer is shown with the correct theme but the specified report (yop.trdx) failed to load. The report has only a static textbox in it (no datasource bindings)
My xaml look like:
<Window x:Class="App2.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
xmlns:tr="http://schemas.telerik.com/wpf"
xmlns:telerikControls="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls"
Title="MainWindow" Height="350" Width="525" telerikControls:StyleManager.Theme="Vista">
<Grid>
<tr:ReportViewer x:Name="ReportViewer1" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"/>
</Grid>
Could you please help me?
Thanks,
Thomas
Hi Team,
I have created a dashboard with multiple tables and charts.When I click on preview button its showing same look as in design view.But when I see this in print preview or send them via email then all charts and report position changes. there are blank pages shows between tables or charts.I have attached my sample dashboard .Please tell me how I can control all chart so that they look same in print preview as in design view.Is there any setting to adjust or control the charts position or table position??
Thanks,
Prashant
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