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

ASPxClientReportDesignerCustomizeOpenDialogEventArgs Class

Provides data for the ASPxClientReportDesigner.CustomizeOpenDialog event.

#Declaration

TypeScript
declare class ASPxClientReportDesignerCustomizeOpenDialogEventArgs extends ASPxClientEventArgs

#Remarks

ASPxClientReportDesignerCustomizeOpenDialogEventArgs objects are automatically created, initialized and passed to corresponding event handlers.

#Inheritance

ASPxClientEventArgs
ASPxClientReportDesignerCustomizeOpenDialogEventArgs

#constructor(popup)

Initializes a new instance of the ASPxClientReportDesignerCustomizeOpenDialogEventArgs class with the specified settings.

#Declaration

TypeScript
constructor(
    popup: DevExpress.Reporting.Designer.Tools.OpenReportDialog
)

#Parameters

Name Type Description
popup OpenReportDialog

An object that specifies the Open Report dialog.

#Properties

#Popup Property

Provides access to the Open Report dialog.

#Declaration

TypeScript
Popup: DevExpress.Reporting.Designer.Tools.OpenReportDialog

#Property Value

Type Description
OpenReportDialog

An object that specifies the Open Report dialog.

#Methods

#Customize(template, model) Method

Customizes the Open Report dialog based on the specified template and model.

#Declaration

TypeScript
Customize(
    template: string,
    model: DevExpress.Reporting.Designer.Tools.IDialogModel
): void

#Parameters

Name Type Description
template string

A string that specifies the name of an HTML template for the dialog.

model IDialogModel

A model of the Open Report dialog.

#Remarks

For an example of using this method, see the ASPxClientReportDesigner.CustomizeOpenDialog event description.

See Also