Hi,
I cannot understand how to programmatically enable dynamic shrinking and/or growing of sections on programmatically generated report objects.
In particular, from documentation it seems like that at least CanShrink property should be provided, but I cannot find it from code. What am I missing?
Alternatively, is there a way to make PageHeaderSection, PageFooterSection and DetailSection dynamically resize their height accordingly to the height of the visible items inside them?
Thanks in advance
Hi
I am using Reporting with aspx net.
Does anyone know if I can add a query string parameter in the base path during the render of report ?
Thanks a lot for any answer
Hello,
I have some reports created in crystal report that I had to convert them using telerik reporting designer.
In crystal report, they use the notion of group headers and group subheaders ..
for example I find:
group header section n ° 1
group header section n° 2
etc..
My question is if I can make the same distribution of groups in telerik report designer ? if not what can you suggest to me in order to reproduce this?
Thank you.
Hi,
i am getting a error when working with session state custom, i am using redis cache for session,
thanks for any help
Hello,
My project is looking to replace our old embedded crystal reports engine with a better .Net solution. However we have some customers that require Aztec 2D barcodes which is not listed as a supported format in the user guide. Is there a plugin or a method for our development team to extend and add Aztec support? or should we look to another reporting engine to satisfy this requirement?
Thanks,
James
Hi,
I am evaluating the Telerik Reports to use instead of Active Reports. I've managed to get everything working but I'm having an issue with printing long receipts.
Short receipts aren't a problem and work perfectly fine. However, if I try and print a very long receipt i.e. 15xA4 in length for an end of day till report via receipt, it prints OK the first time but thereafter ALL receipts print a blank page.
Restarting the software doesn't fix the receipt printing - you have to completely reboot your computer for the receipt print to be able to print properly again.
This happens in my demo software, furthermore it also does the same thing whilst using Telerik Report Designer - you'll be able to replicate the problem easily.
Is there a way around this please as I can't move over whilst this isn't working?
Kind regards,
Matt.
I want to set the DataSource parameters at Webforms runtime so I created a DataSource with the code below. Hos do I attached this to the report before setting the ReportViewer reportSource? I can create a Report object and set the DataSource but how do I assign it to the reportsource which is set to the viewer?
Telerik.Reporting.SqlDataSource sqlDataSource = new Telerik.Reporting.SqlDataSource();
sqlDataSource.SelectCommand = "SELECT * FROM VerifiedComponents WHERE ItemNumber = @ItemNumber";
sqlDataSource.Parameters.Add("@ItemNumber", System.Data.DbType.String, "14545454545");
Telerik.ReportViewer.Html5.WebForms.ReportSource reportSource = new Telerik.ReportViewer.Html5.WebForms.ReportSource();
reportSource.IdentifierType = Telerik.ReportViewer.Html5.WebForms.IdentifierType.TypeReportSource;
reportSource.Identifier = typeof(Report1).AssemblyQualifiedName;
reportViewer1.ReportSource = reportSource;
I'm designing a Report in the Standalone Report Designer and consuming it in a WPF application.
I want to anchor an image to the bottom of the report details section. To this end I have set the anchoring property = bottom.
When I view the report in the WPF application in Print Preview mode the image appears half way up the page (the same is true when it is printed), however, If I switch the Report Viewer to interactive view the image appears anchored to the bottom of the page as desired.
How can I get the image to be anchored to the bottom of the page when printed ?