Skip to main content
All docs
V25.1
  • DxReportDesignerWizardSettings.UseMasterDetailWizard Property

    Specifies whether the Report Wizard can create master-detail reports and specify its grouping and summary options.

    Namespace: DevExpress.Blazor.Reporting

    Assembly: DevExpress.Blazor.Reporting.v25.1.JSBasedControls.Common.dll

    NuGet Package: DevExpress.Blazor.Reporting.JSBasedControls.Common

    Declaration

    [Parameter]
    public bool UseMasterDetailWizard { get; set; }

    Property Value

    Type Description
    Boolean

    True, to use the master-detail Report Wizard version; false, to use the standard Report Wizard version.

    Remarks

    The following code snippet demonstrates how to disable the master-detail functionality in the Report Wizard:

    <DxReportDesigner ReportName="HelloWorld" Height="1000px" Width="100%" AllowMDI="true" >
        <DxReportDesignerWizardSettings UseMasterDetailWizard="false" />
    </DxReportDesigner>
    
    See Also