Options for notification display.

interface ModalDialogOptions {
    applyLabel?: string;
    cancelable?: boolean;
    okayLabel?: string;
    title?: string;
    useSubmit?: boolean;
}

Properties

applyLabel?: string

The label for the dialog's apply button.

cancelable?: boolean

If the notification may be closed by the user. Defaults to true.

okayLabel?: string

The label for the dialog's okay (apply and close) button.

title?: string

The dialog's title.

useSubmit?: boolean

Create a button that submits the form with the given id.