When I used Xrm.Navigation.openConfirmDialog to popup message, I found two problems on IE and Edge browsers,
1. On IE, the title of dialog is always obscured
2. On Edge, the button is always covered by the progress bar
Have you guys encountered such a problem, I now suspect that this is a bug between Microsoft CRM 365 and Edge.
My testing codes:
var confirmStrings = { text:"This is a confirmation.", title:"Confirmation Dialog" }; var confirmOptions = { height: 200, width: 450 }; Xrm.Navigation.openConfirmDialog(confirmStrings, confirmOptions).then( function (success) { if (success.confirmed) console.log("Dialog closed using OK button."); else console.log("Dialog closed using Cancel button or X."); });