Hi,
I have a standard report with: PageHeaderSection, GroupHeaderSection - DetailSection etc. My problem is the paper on which the report is being printed on, it may have a pre- printed Logo on the top. What I need is to dynamically set the page margin or better the PageHeaderSection height. But it seems this is not possible. Could you please give me a solution to this problem.
Thank you and Kind regards
Wayne
Hi, I am loading main report and sub report data source programmatically and the both the reports load data correctly
Now I want to filter sub report data based on the main report.
For Example list orders by product. So I am setting Product ID parameter value to the product ID from the main report. Problem is that this is not getting passed or available during sub report generation. I verified this by display parameter value on the support and it is blank.
Thanks in advance for your help.
Srinu T
$(
'#btnUpdateReport'
).click(
function
() {
// add the parameters to the controller parameters
var
pId = $(
'#txtPortfolioId'
).val();
var
viewer = $reportViewer.data(
'telerik_ReportViewer'
);
viewer.reportSource($.extend({}, viewer.reportSource(), { parameters: {
'portfolioId'
: pId } }));
});
/api/reports/clients/142151-0f94/ReportingPrototype.Reports.InvestmentStrategy, ReportingPrototype/parameters?{"portfolioId":"1"}=
/api/reports/clients/142151-0f94/instances?{"report":"ReportingPrototype.Reports.InvestmentStrategy, ReportingPrototype","parameterValues":{"portfolioId":1}}=
Hi,
We are using the standalone designer to ideally build reports and drop them into place where we have a screen
that links to what reports are available. The idea being to allow reports to be created without having to recompile
the asp.net. We retrieve data from Sql server 2008 R2 using Telerik DataSource.
We have run into a problem in trying to convert datetimeoffset into a time zone name to display in the reports.
In the web pages we use the .Net class timezoneinfo. Is there a way to call the .net managed code and manipulate the data
retrieved from the data-source in Report designer.