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

ReportDesignerBuilder.ClientSideEvents(Action<ReportDesignerClientSideEventsBuilder>) Method

Provides access to the ReportDesignerClientSideEventsBuilder object that allows you to handle the client-side events specific to the Web Report Designer.

Namespace: DevExpress.AspNetCore.Reporting.ReportDesigner

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

NuGet Package: DevExpress.AspNetCore.Reporting

#Declaration

#Parameters

Name Type Description
configure Action<ReportDesignerClientSideEventsBuilder>

A Action<T> delegate method that allows you to assign handlers to the client-side events using the methods exposed by the ReportDesignerClientSideEventsBuilder object, which is passed as the delegate parameter.

#Returns

Type Description
ReportDesignerBuilder

A ReportDesignerBuilder that can be used to further configure the Report Designer.

#Remarks

When defining the delegate method, use the ReportDesignerClientSideEventsBuilder object that is passed as a parameter. This object exposes methods whose names correspond to the events available to the Web Report Designer on the client side. These methods provide the capability to handle these events by passing JavaScript functions as the methods’ parameters.

See Also