Interface IDialogOptions

Options for dialog creation

Index

Properties

Properties

optional public allowMaximize?: boolean

specifies if maximize button should be shown on the dialog

optional public args?: any

custom arguments to be passed to the dialog

optional public autoSize?: boolean

automatically determine size of the dialog based on its contents.

optional public autoSizeStartWidth?: number

minimum width of the dialog when using autoSize option

optional public dialogReturnValueCallback?: DialogReturnValueCallback

callback that is called after dialog is closed

optional public height?: number

height of the dialog. if not specified, will be determined automatically based on the contents of the dialog

optional public html?: HTMLElement

html element which will be used as contents of the dialog. You should use either html or url attribute, but not both.

optional public includeScrollBarPadding?: boolean

include padding for adding a scrollbar

optional public showClose?: boolean

specifies if close button should be shown on the dialog

optional public showMaximized?: number

The dialog will be maximized when shown.

optional public title?: string

Text displayed in the title bar of the dialog box. If not defined, it will default to the title of the page defined by url property.

optional public url?: string

url of the page which is shown in the modal dialog. You should use either html or url attribute, but not both.

optional public width?: number

width of the dialog. if not specified, will be determined automatically based on the contents of the dialog

optional public x?: number

X coordinate of the dialog box.

optional public y?: number

Y coordinate of the dialog box.