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

IDialogModel Interface

A model of dialogs used to save and open reports in the Web Report Designer.

#Declaration

TypeScript
export interface IDialogModel

#Properties

#getUrl Property

Specifies a function that gets the report URL.

#Declaration

TypeScript
getUrl: () => string

#Property Value

Type Description
() => string

A function that gets the report URL.

#onShow Property

Specifies a function to be executed when showing a dialog.

#Declaration

TypeScript
onShow: (tab: DevExpress.Reporting.Designer.Tools.INavigateTab) => void

#Property Value

Type Description
(tab: INavigateTab) => void

A function to be executed when showing a dialog.

#popupButtons Property

Provides access to the collection of buttons displayed in a dialog.

#Declaration

TypeScript
popupButtons: any[]

#Property Value

Type Description
any[]

An array of buttons displayed in a dialog.

#setUrl Property

Specifies a function that sets the report URL.

#Declaration

TypeScript
setUrl: (url: string) => void

#Property Value

Type Description
(url: string) => void

A function that sets the report URL.