Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DxDocumentViewerCallbacks.CustomizeMenuActions Property

Specifies the handler for the CustomizeMenuActions client-side event that enables you to customize the Web Document Viewer toolbar and menu.

Namespace: DevExpress.Blazor.Reporting

Assembly: DevExpress.Blazor.Reporting.v24.2.JSBasedControls.Common.dll

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

#Declaration

[Parameter]
public string CustomizeMenuActions { get; set; }

#Property Value

Type Description
String

The name of a JavaScript function used to handle the CustomizeMenuActions event.

#Remarks

The CustomizeMenuActions event enables you to customize the Web Document Viewer toolbar and menu.

The handler function receives two parameters - the first parameter is the client-side Document Viewer (the event sender) that exposes the dx property to access the client-side DevExpress objects. The second parameter is an object with the following properties and methods:

  • Actions
    A collection of Actions available in the Web Document Viewer’s toolbar and menu.

  • GetById
    A method that allows you to obtain the Action by its ActionId value.

The following code hides the Print action in the toolbar:

window.ReportingViewerCustomization = {
    // Remove the Print action from the toolbar.
    onCustomizeMenuActions: function (s, e) {
        var printAction = e.GetById(DevExpress.Reporting.Viewer.ActionId.PrintPage);
        var index = e.Actions.indexOf(printAction);
        e.Actions.splice(index, 1);
    }
}
See Also