Skip to main content

DashboardParameterDialogOptionBuilder Class

A wrapper that provides access to DashboardParameterDialogExtensionOptions.

Namespace: DevExpress.DashboardAspNetCore

Assembly: DevExpress.Dashboard.v23.2.AspNetCore.dll

NuGet Package: DevExpress.AspNetCore.Dashboard

Declaration

public class DashboardParameterDialogOptionBuilder

Remarks

Use the DashboardExtensionsOptionBuilder.ParameterDialog method to call the DashboardParameterDialogOptionBuilder.

The code sample below shows how to configure the Web Dashboard’s parameter dialog extension:

@(Html.DevExpress().Dashboard("dashboardControl1")
    .Width("100%")
    .Height("100%")
    .OnBeforeRender("onBeforeRender")
    .Extensions(ext => {
        ext.ParameterDialog(options => {
            // ...
        });
    })
)

Inheritance

Object
DashboardParameterDialogOptionBuilder
See Also