ReportDesignerSettings.SettingsWizard Property
Provides access to the Report Wizard settings.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v24.1.dll
NuGet Package: DevExpress.Web.Mvc5
Declaration
Property Value
Type | Description |
---|---|
ReportDesignerWizardSettings | A ReportDesignerWizardSettings object that contains Report Wizard settings. |
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.
@Html.DevExpress().ReportDesigner(settings => {
settings.Name = "ReportDesigner";
settings.SettingsWizard.UseFullscreenWizard = false;
}).Bind(Model).GetHtml()
See Also