I am looking for a report generator which will do something rather complex, and Telerik reporting looks like it can probably do what is needed, but I'd like to confirm.
For the sake of an example, presume I have a large order, with items that have a price, a quantity, and a line price. The descriptions may be big and there are many pages, perhaps 20 or so in the printout. Each page must have, at the bottom of the page, the sub-total for that page (adding all the line prices). This part is shown in the online invoice demonstration, so is indeed possible.
At the end of the report, the last page(s) should have the page numbers and their values, so:
page 1 $2,000
page 2 $3,202
page 3 $2,039
Now, I think that it should be possible for the page totals to be picked up in the ItemDataBound events, and perhaps added to a list somehow which is then picked up at the end to be fed into the final section of the report. Am I right? Is this viable, or is it pushing it too far? Can a report even have multiple sections so that the last section can be inserted (sort of like two reports in one?).
I appreciate any thoughts anyone might have. Thank you.
Hi All,
I'm using ReportViewer1.PrintReport() in javascript to print the report directly to printer. But when ever I call this method, printer dialogue comes and i have to choose a printer. I want to avoid this dialogue window and print directly to the printer. Is there any method for this?
Looking for your help.
Hi
Im using the following code to print report viewer directly to the printer from client side.
In ASPX
<div style="display:none">
<telerik:ReportViewer ID="ReportViewer1" runat="server" Height="105px" Width="693px">
</telerik:ReportViewer>
</div>
In ASPX.cs, on button click
Report1 report = new Report1();
string selectCommand = @"select EmployeeID,EmployeeName from master_employee";
string connectionString = "Data Source=STATIONXXX;Initial Catalog=abc;User Id=sa;Password=123";
Telerik.Reporting.SqlDataSource sqlDataSource = new Telerik.Reporting.SqlDataSource(connectionString, selectCommand);
report.DataSource = sqlDataSource;
ReportViewer1.Report = report;
string PrintScript = string.Format("{0}.PrintReport()", this.ReportViewer1.ClientID);
ScriptManager.RegisterStartupScript(this.Page, this.Page.GetType(), "Print", PrintScript, true);
But when i press print button i'm getting the following error
"Error printing the report: TypeError:toolbar.GetButtonByName is not a function"
Im using google chrome as browser.
Can any one help me on this?
Hi All,
I am using Standalone Report designer . Through this i have created a report which is static means i am not able to click on chart on run time(this means Static Chart) .So i want a chart on which i want to change the chart on click basis and all ohther chart change accoring to my click on run time means dynamic chart.
Please see this telerik dashboard example and tell me , is it possible to create this type of dashboard with Stabdalone Telerik Report Designer?
http://demos.telerik.com/aspnet-ajax/salesdashboard/
Thanks,
Narender
Hello,
I have several lines (the exact amount will be determined at runtime), each with a different Y axis (but a shared X axis), that I would like to display on the same chart. The X axis should be in date/time format while all of the Y axes should consist of integers. The Y axes should alternate between the left & right sides of the chart. If possible, I'd like all of these to come from a single datasource (a datatable) and be grouped into lines based on a column. I also need the axes to either have labels or colors to distinguish which one goes with which line.
I have no idea how to approach this - I couldn't find much documentation on it and the forum threads that I looked at were quite old. I watched the tutorial here and read the documentation here but I would like to generate all of this at runtime if possible. If what I'm asking is possible, could someone provide me with a sample project or some sample code?
Thank you!