Skip to main content
All docs
V26.1
  • 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.v26.1.Web.WebForms.dll

    NuGet Package: DevExpress.Web.Reporting

    Declaration

    [DefaultValue(true)]
    public bool UseFullscreenWizard { get; set; }

    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
    .NET Reporting Tools ASPxReportDesigner
    .SettingsWizard .UseFullscreenWizard
    ASP.NET MVC Extensions ReportDesignerSettings
    .SettingsWizard .UseFullscreenWizard

    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

      protected void Page_Load(object sender, EventArgs e) {
          ASPxReportDesigner1.SettingsWizard.UseFullscreenWizard = false;
          //...
      }
      
    • ASP.NET MVC

      @Html.DevExpress().ReportDesigner(settings => {
          settings.Name = "ReportDesigner";
          settings.SettingsWizard.UseFullscreenWizard = false;
      }).Bind(Model).GetHtml()
      
    • 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