window.alert()
Since: v7.0.0 <br></br>
Displays an Alert message dialog putting the application in a modal state while <b>not blocking</b> the JavaScript thread and still allowing processing of events in the main event loop.
data-variant=info
data-slots=text
UXP behaviour is different from the standard behaviour of blocking the JavaScript thread of execution until the dialog has been dismissed.
The following are additional simple alerts supported by UXP
Param
Type
Description
message
stringA message you want to display in the alert dialog<br></br>
Example
alert("This is alert message");
<b> Note: </b>
- Since UXP v7.4,
alert()can only be invoked inpluginvia the featureFlagsenableAlerts. Update your Manifest v5 with the following
"featureFlags": {
"enableAlerts": true
}
- Since UXP v7.4,
alert()is disabled forscripts