Skip to main content
All docs
V24.2

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

QueryBuilderClientSideEventsBuilder.CustomizeMenuActions(String) Method

Specifies the JavaScript handler function for the CustomizeMenuActions client-side event.

Namespace: DevExpress.AspNetCore.Reporting.QueryBuilder

Assembly: DevExpress.AspNetCore.Reporting.v24.2.dll

NuGet Package: DevExpress.AspNetCore.Reporting

#Declaration

public QueryBuilderClientSideEventsBuilder CustomizeMenuActions(
    string callback
)

#Parameters

Name Type Description
callback String

The name of a JavaScript function or the entire JavaScript function code that handles the CustomizeMenuActions event.

#Returns

Type Description
QueryBuilderClientSideEventsBuilder

A QueryBuilderClientSideEventsBuilder that can be used to further configure the Query Builder client-side events.

#Remarks

The following code demonstrates how to hide the Save action in the Web Query Builder toolbar:

@{ var queryBuilder = Html.DevExpress().QueryBuilder("webQueryBuilder")
                    .Height("400px")
                    .Bind(Model)
                    .ClientSideEvents(configure =>
                    { configure.CustomizeMenuActions("customizeMenuActions"); }); ; }
@queryBuilder
See Also