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: INavigate |
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. |