Skip to main content

show

show(dialogParams: DialogParameters): void

Parameters

Parameters

NameTypeDescription
dialogParamsDialogParametersDialog parameters

Description

Displays a message box with the specified parameters.

Example

NetDecor.v3.dialog.show({
flags: "YesNoCancel",
title: {
en: "Unsaved Project"
},
message: { en: "Do you want to save changes?" },
onresult: function (result) {
if (result == "Yes") {
console.log(NetDecor.v3.project.getCurrentProject());
openProject();
}
if (result == "No") {
openProject();
}
}
})

Result:

example dialog