Skip to main content
All docs
V25.1
  • DxReportDesignerCallbacks.CustomizeMenuActions Property

    Specifies the JavaScript function that handles the Web Report Designer’s CustomizeMenuActions client-side event.

    Namespace: DevExpress.Blazor.Reporting

    Assembly: DevExpress.Blazor.Reporting.v25.1.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 Report Designer 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 toolbar and menu.

    • GetById
      A method that allows you to obtain the Action by its ActionId value. Use the s.dx notation to access the ActionId enumeration.

    window.ReportingDesignerCustomization = {
    // ...
        onCustomizeMenuActions: function(s, e) {
            //Custom New Report
            var newReportAction = e.GetById(DevExpress.Reporting.Designer.Actions.ActionId.NewReport);
            if(newReportAction) {
                newReportAction.clickAction = function(report) {
                    s.OpenReport("CustomNewReport");
                }
    
                //Move New button to the toolbar
                newReportAction.container = "toolbar";
                newReportAction.hasSeparator = true;
                e.Actions.splice(e.Actions.indexOf(newReportAction), 1);
                e.Actions.push(newReportAction);
            }
    
            //Move Save button to the toolbar
            var saveAction = e.GetById(DevExpress.Reporting.Designer.Actions.ActionId.Save);
            saveAction.container = "toolbar";
            e.Actions.splice(e.Actions.indexOf(saveAction), 1);
            e.Actions.push(saveAction);
            // ...
        }
    }
    
    See Also