This is a migrated thread and some comments may be shown as answers.

programaticaly set Reportsoure of Sub-Sub Report

1 Answer 27 Views
Report Designer (standalone)
This is a migrated thread and some comments may be shown as answers.
Lars
Top achievements
Rank 1
Lars asked on 01 Feb 2017, 12:29 PM

Hi,

i am facing a problem setting the reportsource of a Sub - Sub Report.

I am trying it like this....

 

using (System.Xml.XmlReader xmlReader = System.Xml.XmlReader.Create(reportingPath + report_Name, settings))
{
    Telerik.Reporting.XmlSerialization.ReportXmlSerializer xmlSerializer = new Telerik.Reporting.XmlSerialization.ReportXmlSerializer();
    ExportReport = (Telerik.Reporting.Report) xmlSerializer.Deserialize(xmlReader);
    if ((ExportReport != null))
    {
        ExportReport.ReportParameters["Id"].Value = Id;
 
        // Subreport for Column1
        if ((ExportReport.Items.Find("SubReport_Column1", true)).Count() == 1)
        {
            Telerik.Reporting.SubReport SubReport_Column1 = (Telerik.Reporting.SubReport) ExportReport.Items.Find("SubReport_Column1", true)[0];
            ((Telerik.Reporting.UriReportSource) (SubReport_Column1.ReportSource)).Uri = reportingPath + SubReport_Colum1_Name;
                         
            if ((SubReport_Column1.Items.Find("SubReport_Column1_Details", true)).Count() == 1)
            {
                Telerik.Reporting.SubReport Report_SubReport_Column1_Details = (Telerik.Reporting.SubReport) SubReport_Column1_Details.Items.Find("Column1_Details", true)[0];
                ((Telerik.Reporting.UriReportSource) (Report_SubReport_Column1_Details .ReportSource)).Uri = reportingPath + report_Column1_Details;
            }
        }
         
        ...

 

Hope somebody can help me out?

I am not sure, what is the right way to set the SubReport.URI of the SubReport.
    if ((SubReport_Column1.Items.Find("SubReport_Column1_Details", true)).Count() == 1)

 

 

 

 

1 Answer, 1 is accepted

Sort by
0
Lars
Top achievements
Rank 1
answered on 01 Feb 2017, 12:36 PM
please delete this post, accidental the post was made to early....a second one it present.
Tags
Report Designer (standalone)
Asked by
Lars
Top achievements
Rank 1
Answers by
Lars
Top achievements
Rank 1
Share this question
or