Posts
Showing posts from February, 2024
100 Days 100 Learning Interview Questions Dynamics 365 CRM Data Types
- Get link
- X
- Other Apps
How to Show Confirm Dialog Box using JavaScript? How to display a progre...
- Get link
- X
- Other Apps
Code: function PromptDialog(executionContext) { var confirmStrings = { text: "Do you want to proceed?", title: "Confirmation", confirmButtonLabel: "Yes", cancelButtonLabel: "No" }; var confirmOptions = { height: 200, width: 400 }; Xrm.Navigation.openConfirmDialog(confirmStrings, confirmOptions).then( function (success) { if (success.confirmed == true) { CallMethod(executionContext); // Pass executionContext if needed } else { // User clicked No } } );...
How to set a field business required or mandatory using business rule ?
- Get link
- X
- Other Apps