How do I add or create custom formats (or a custom format) for my...

Expand / Collapse
 

How do I add or create custom formats (or a custom format) for my report?


File system mode stores reports in the reports folder in the Reports root directory. These reports are stored as xml files. Database system mode stores reports in a database table. This table is the reports table.

To set file system mode for storing reports:

Find the global.asax file which should be in your Reports root directory. Open this file and find this line in the file:

public class CustomAdHocConfig : Izenda.AdHoc.DatabaseAdHocConfig

Change this line to

public class CustomAdHocConfig : Izenda.AdHoc.FileSystemAdHocConfig

To set database system mode for storing reports:

Find the global.asax file which should be in your Reports root directory. Open this file and find this line in the file:

public class CustomAdHocConfig : Izenda.AdHoc.FileSystemAdHocConfig

Change this line to

public class CustomAdHocConfig : Izenda.AdHoc.DatabaseAdHocConfig


Details
Type: FAQ
Options