This documentation is for the legacy Izenda 6 product. Documentation for the new Izenda 7 product can be found at https://www.izenda.com/docs/
Can I change the report title dynamically?
Yes, the report attributes can be changed in the PreExecuteReportSet method, most of the attributes for a report are available there. To change the title of the report dynamically add this to the Global.asax PreExecuteReportSet:
public override void PreExecuteReportSet(Izenda.AdHoc.ReportSet reportSet) { reportSet.Title = "Some Title"; }//end PreExecute
This method executes when a report is created to be exported or viewed. At this point, the xml from the actual report file has been parsed and loaded, so changes made here will not be permanent.
Last edited by Joseph Adams, 2014-05-20 16:46:27