Skip to content

Instantly share code, notes, and snippets.

@pawelgradecki
Created November 26, 2017 16:39
Show Gist options
  • Save pawelgradecki/e48de477cbae96c7b3ed6423f1c1cc90 to your computer and use it in GitHub Desktop.
Save pawelgradecki/e48de477cbae96c7b3ed6423f1c1cc90 to your computer and use it in GitHub Desktop.
function showAlertDialog() {
var localizedResult = Xrm.Utility.getResourceString("odx_/resx/messages", "qualifyingLeadMessage");
var alertStrings = {
confirmButtonLabel: "OK",
text: localizedResult
};
var alertOptions = {
height: 200,
width: 400
};
Xrm.Navigation.openAlertDialog(alertStrings, alertOptions);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment