xtrareports-js-aspxclientreportdesignercustomizeopendialogeventargs.md
Provides data for the ASPxClientReportDesigner.CustomizeOpenDialog event.
declare class ASPxClientReportDesignerCustomizeOpenDialogEventArgs extends ASPxClientEventArgs
ASPxClientReportDesignerCustomizeOpenDialogEventArgs objects are automatically created, initialized and passed to corresponding event handlers.
ASPxClientEventArgs ASPxClientReportDesignerCustomizeOpenDialogEventArgs
Initializes a new instance of the ASPxClientReportDesignerCustomizeOpenDialogEventArgs class with the specified settings.
constructor(
popup: DevExpress.Reporting.Designer.Tools.OpenReportDialog
)
| Name | Type | Description |
|---|---|---|
| popup | OpenReportDialog |
An object that specifies the Open Report dialog.
|
Provides access to the Open Report dialog.
Popup: DevExpress.Reporting.Designer.Tools.OpenReportDialog
| Type | Description |
|---|---|
| OpenReportDialog |
An object that specifies the Open Report dialog.
|
Customizes the Open Report dialog based on the specified template and model.
Customize(
template: string,
model: DevExpress.Reporting.Designer.Tools.IDialogModel
): void
| 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.
|
For an example of using this method, see the ASPxClientReportDesigner.CustomizeOpenDialog event description.
See Also