ReportsModuleV2.ReportStoreMode Property
Specifies the format used to store reports in the ReportsStorage.
Namespace: DevExpress.ExpressApp.ReportsV2
Assembly: DevExpress.ExpressApp.ReportsV2.v25.2.dll
NuGet Package: DevExpress.ExpressApp.ReportsV2
Declaration
Property Value
| Type | Description |
|---|---|
| ReportStoreModes | A ReportStoreModes enumeration value that specifies the format used to store reports. |
Remarks
Supported formats are DOM and XML. Using the XML format instead of DOM can decrease the loading time of a complex report.
Important
- Ensure that you use the same
ReportStoreModevalue in all versions of your application that utilize the same database. - Reports previously created by users will fail to open after changing the
ReportStoreModevalue, with the error message similar to “Data at the root level is invalid. Line 1, position 1“. To fix the error, use the module updater demonstrated in the How to fix the ‘Data at the root level is invalid. Line 1, position 1.’ exception after setting the ReportsModuleV2.ReportStoreMode property to XML KB article.
The Template Kit sets the ReportStoreMode value to XML an all newly created XAF applications.
See Also