Back to Devexpress

DashboardExportOptionBuilder.OnExportDialogShown(String) Method

dashboard-devexpress-dot-dashboardaspnetcore-dot-dashboardexportoptionbuilder-dot-onexportdialogshown-x28-system-dot-string-x29.md

latest2.2 KB
Original Source

DashboardExportOptionBuilder.OnExportDialogShown(String) Method

A handler for the event that occurs after the export dialog is shown.

Namespace : DevExpress.DashboardAspNetCore

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

NuGet Package : DevExpress.AspNetCore.Dashboard

Declaration

csharp
public DashboardExportOptionBuilder OnExportDialogShown(
    string onExportDialogShown
)
vb
Public Function OnExportDialogShown(
    onExportDialogShown As String
) As DashboardExportOptionBuilder

Parameters

NameTypeDescription
onExportDialogShownString

A function that is executed after the export dialog is shown.

|

Returns

TypeDescription
DashboardExportOptionBuilder

A reference to this instance after the operation has completed.

|

Remarks

The code snippet below shows how to call a function after the export dialog is shown.

cshtml
<script>
    function ExportDialogShown() {
        // ...
    }
</script>
<div style="position: absolute; left: 0; top: 0; right: 0; bottom: 0;">
@(Html.DevExpress().Dashboard("dashboardControl1")
    .Width("100%")
    .Height("100%")
    .OnBeforeRender("onBeforeRender")
    .Extensions(ext => {
        ext.DashboardExport(options => {
            options.OnExportDialogShown("ExportDialogShown");
        });
    })
)
</div>

See Also

DashboardExportOptionBuilder Class

DashboardExportOptionBuilder Members

DevExpress.DashboardAspNetCore Namespace