Skip to content

@serenity-is/corelib / AlertOptions

Interface: AlertOptions

Additional options for Alert dialogs

Hierarchy

Table of contents

Properties

Properties

bootstrap

Optional bootstrap: boolean

True to use Bootstrap dialogs even when jQuery UI present, default is based on `Q.Config.bootstrapMessages

Inherited from

CommonDialogOptions.bootstrap

Defined in

src/q/dialogs.ts:50


buttons

Optional buttons: DialogButton[]

List of buttons to show on the dialog

Inherited from

CommonDialogOptions.buttons

Defined in

src/q/dialogs.ts:46


dialogClass

Optional dialogClass: string

Dialog css class. Default is based on the message dialog type

Inherited from

CommonDialogOptions.dialogClass

Defined in

src/q/dialogs.ts:44


htmlEncode

Optional htmlEncode: boolean

HTML encode the message, default is true

Inherited from

CommonDialogOptions.htmlEncode

Defined in

src/q/dialogs.ts:40


modalClass

Optional modalClass: string

Class to use for the modal element for Bootstrap dialogs

Inherited from

CommonDialogOptions.modalClass

Defined in

src/q/dialogs.ts:48


okButton

Optional okButton: string | boolean

The title of OK button, or false to hide the OK button

Defined in

src/q/dialogs.ts:315


okButtonClass

Optional okButtonClass: string

CSS class for OK button

Defined in

src/q/dialogs.ts:317


onClose

Optional onClose: (result: string) => void

Type declaration

▸ (result): void

Event handler that is called when dialog is closed

Parameters
Name Type
result string
Returns

void

Inherited from

CommonDialogOptions.onClose

Defined in

src/q/dialogs.ts:36


onOpen

Optional onOpen: () => void

Type declaration

▸ (): void

Event handler that is called when dialog is opened

Returns

void

Inherited from

CommonDialogOptions.onOpen

Defined in

src/q/dialogs.ts:34


preWrap

Optional preWrap: boolean

Wrap the message in a <pre> element, so that line endings are preserved, default is true

Inherited from

CommonDialogOptions.preWrap

Defined in

src/q/dialogs.ts:42


result

Optional result: string

The result code of the button used to close the dialog is returned via this variable in the options object

Inherited from

CommonDialogOptions.result

Defined in

src/q/dialogs.ts:52


title

Optional title: string

Dialog title

Inherited from

CommonDialogOptions.title

Defined in

src/q/dialogs.ts:38