How to Display an Alert in Power Apps using JavaScript

Leave a comment

When using JavaScript, we can display alerts in model-driven Power Apps. To do this, we can useĀ openAlertDialog.

The syntax for this method looks like below:

Xrm.Navigation.openAlertDialog(alertStrings,alertOptions).then(closeCallback,errorCallback);

As a simple example, we can use:

var alertStrings = { confirmButtonLabel: "Got it", text: "Something happened.", title: "Alert Title" };
var alertOptions = { height: 500, width: 500 };
Xrm.Navigation.openAlertDialog(alertStrings, alertOptions).then(
    function success(result) {
        console.log("Alert dialog closed");
    },
    function (error) {
        console.log(error.message);
    }
);

This displays an alert, with a button “Got it”, an Alert Title and some text “Something happened.”. This may be useful when wanting to alert a user of something when customizing your org.

 

Carl de Souza
Keep learning. Keep building.

Explore AI, agents & Microsoft technology.

I share practical ideas, tutorials, and videos about AI, AI agents, Microsoft technologies, and the Power Platform.

Subscribe on YouTube →
Carl de Souza Enterprise Architect at Microsoft Ā· AI Technology Expert

Leave a Reply

Your email address will not be published. Required fields are marked *