PL-400 · Question #17
A bank uses a Common Data Service solution to manage clients. Bank representatives perform client credit checks while the client is present. Credit checks may take up to five minutes to complete…
The correct answer is D. Xrm.Utility.showProgressIndicator(myPoliteMessage). showProgressIndicator displays a progress dialog with the specified message. Any subsequent call to this method will update the displayed message in the existing progress dialog with the message specified in the latest method call. The progress dialog blocks the UI until it is…
Question
Options
- AXrm.Navigation.openWebResource("prefix.myPoliteMessage.html")
- BXrm.Navigation.openAlertDialog(myPoliteMessage)
- CXrm.Utility.openWebResource("prefix_myPoliteMessage.html")
- DXrm.Utility.showProgressIndicator(myPoliteMessage)
How the community answered
(20 responses)- A5% (1)
- B5% (1)
- C20% (4)
- D70% (14)
Explanation
showProgressIndicator displays a progress dialog with the specified message. Any subsequent call to this method will update the displayed message in the existing progress dialog with the message specified in the latest method call. The progress dialog blocks the UI until it is closed using the closeProgressIndicator method. So, you must use this method with caution. https://docs.microsoft.com/en-us/powerapps/developer/model-driven- apps/clientapi/reference/xrm-utility/showprogressindicator
Community Discussion
No community discussion yet for this question.