ReportDesignerController Class
A base class for the controller that processes HTTP requests from the Web Report Designer.
Namespace: DevExpress.AspNetCore.Reporting.ReportDesigner
Assembly: DevExpress.AspNetCore.Reporting.v24.1.dll
NuGet Package: DevExpress.AspNetCore.Reporting
Declaration
Remarks
If your application uses the Web Report Designer component, you should explicitly implement controllers as the following code sample illustrates:
using DevExpress.AspNetCore.Reporting.QueryBuilder;
using DevExpress.AspNetCore.Reporting.QueryBuilder.Native.Services;
using DevExpress.AspNetCore.Reporting.ReportDesigner;
using DevExpress.AspNetCore.Reporting.ReportDesigner.Native.Services;
using DevExpress.AspNetCore.Reporting.WebDocumentViewer;
using DevExpress.AspNetCore.Reporting.WebDocumentViewer.Native.Services;
// ...
public class CustomWebDocumentViewerController : WebDocumentViewerController {
public CustomWebDocumentViewerController(IWebDocumentViewerMvcControllerService controllerService) : base(controllerService) {
}
}
public class CustomReportDesignerController : ReportDesignerController {
public CustomReportDesignerController(IReportDesignerMvcControllerService controllerService) : base(controllerService) {
}
}
public class CustomQueryBuilderController : QueryBuilderController {
public CustomQueryBuilderController(IQueryBuilderMvcControllerService controllerService) : base(controllerService) {
}
}
For a code sample, review the following help topics:
- ASP.NET Core and Angular Reporting Best Practices
- Add an End-User Report Designer to an ASP.NET Core MVC Application
- Use Visual Studio Templates to Create an ASP.NET Core Application with a Report Designer
- Use Visual Studio Templates to Create an Angular Application with a Report Designer
Inheritance
Object
ControllerBase
Controller
DevExpress.AspNetCore.Reporting.Native.ControllerBase
ReportDesignerController
See Also