ReportDesignerWizardSettings.UseFullscreenWizard Property
Specifies whether to use the Report Wizard version that runs in the fullscreen mode.
Namespace: DevExpress.XtraReports.Web.ReportDesigner
Assembly: DevExpress.XtraReports.v24.1.Web.WebForms.dll
NuGet Package: DevExpress.Web.Reporting
Declaration
Property Value
Type | Default | Description |
---|---|---|
Boolean | true | true, to use the Report Wizard (Fullscreen) version; false, to use the Report Wizard (Popup) version. |
Property Paths
You can access this nested property as listed below:
Library | Object Type | Path to UseFullscreenWizard |
---|---|---|
ASP.NET MVC Extensions | ReportDesignerSettings |
|
.NET Reporting Tools | ASPxReportDesigner |
|
Remarks
The default Report Designer implementation uses the Data Source Wizard (Fullscreen) version.
The following code snippet demonstrates how to enable the Report Wizard (Popup) version.
ASP.NET Web Forms
ASP.NET MVC
ASP.NET Core
@(Html.DevExpress().ReportDesigner("ReportDesigner") .Height("1000px") .WizardSettings(settings => { settings.UseFullscreenWizard = false; }) .Bind(Model) )
JavaScript/Angular Backend
public object GetReportDesignerModel(string reportUrl) { var generator = new ReportDesignerClientSideModelGenerator(HttpContext.RequestServices); var model = generator.GetModel(reportUrl, null/*DataSources*/, "/DXXRD", "/DXXRDV", "/DXXQB"); model.WizardSettings.UseFullscreenWizard = false; var modelJson = generator.GetJsonModelScript(model); return Content(modelJson, System.Net.Mime.MediaTypeNames.Application.Json); }
See Also