Hi,
System Set UP : VS 2010 (I know, I know out of my control here), Silverlight 4 with Telerik Reports Upgrade Wizard to Q2 2012.
I have been tasked with upgrading the reports in my project to the latest version. I have done this by using the Wizard which was pretty close to perfect but needed me to make a few changes to get it functional.
As part of the reports the existing software passes a load of parameters to the reports by using the event
public void BeginRender(RenderBeginEventArgs args)
I have debugged this and seen all of the properties being populated nicely. The problem occurs when actually in the report and trying to access some of the report parameters. All of the values are null and I cannot work out why?
I have a semi work around -:
void TNAnalysisReport_ItemDataBinding(object sender, EventArgs e)
{
_aCollectionOfParameters = (sender as Telerik.Reporting.Processing.Report).Parameters;
}
However this does not work when populating subreports.... I really need a fix as to why the parameter values are being populated but not passed? Is there anything I can check to see why?
Any pointers would be most appreciated.