Back to Devexpress

DashboardParameterDialogOptionBuilder Class

dashboard-devexpress-dot-dashboardaspnetcore-ff3dc5e2.md

latest2.6 KB
Original Source

DashboardParameterDialogOptionBuilder Class

A wrapper that provides access to DashboardParameterDialogExtensionOptions.

Namespace : DevExpress.DashboardAspNetCore

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

NuGet Package : DevExpress.AspNetCore.Dashboard

Declaration

csharp
public class DashboardParameterDialogOptionBuilder
vb
Public Class DashboardParameterDialogOptionBuilder

The following members return DashboardParameterDialogOptionBuilder objects:

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:

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

Inheritance

Object DashboardParameterDialogOptionBuilder

See Also

DashboardParameterDialogOptionBuilder Members

DevExpress.DashboardAspNetCore Namespace