-
Notifications
You must be signed in to change notification settings - Fork 75
ModalDialog
github-actions[bot] edited this page May 16, 2024
·
3 revisions
Only available if you have the custom dialog style enabled, use "window.dialogStyle": "custom"
in the settings to do so.
const dialog = new ModalDialog();
// get the message (the bold text)
const message = await dialog.getMessage();
// get the details (the not so bold text)
const details = await dialog.getDetails();
// get the button web elements
const buttons = await dialog.getButtons();
// push button with a given title
await dialog.pushButton("Save All");