new feature in Microsoft dynamics crm V9 Archives - Microsoft Dynamics 365 Blog http://microsoftdynamics.in/category/new-feature-in-microsoft-dynamics-crm-v9/ Microsoft Dynamics CRM . Microsoft Power Platform Fri, 24 Apr 2020 14:31:43 +0000 en-US hourly 1 https://wordpress.org/?v=6.6.1 https://i0.wp.com/microsoftdynamics.in/wp-content/uploads/2020/04/cropped-Microsoftdynamics365-blogs.png?fit=32%2C32 new feature in Microsoft dynamics crm V9 Archives - Microsoft Dynamics 365 Blog http://microsoftdynamics.in/category/new-feature-in-microsoft-dynamics-crm-v9/ 32 32 176351444 Show Progress Indicator (Out of the box) Microsoft Dynamics 365 CRM V9 http://microsoftdynamics.in/2018/01/16/show-progress-indicator-out-of-the-box-microsoft-dynamics-365-crm-v9/ Tue, 16 Jan 2018 05:00:00 +0000 Yesterday used a nice feature progress indicator, before we use to write custom JS to show loading progress image but now we can use new JavaScript function of the Xrm.Utility namespace : showProgressIndicator. showProgressIndicator closeProgressIndicator —————————————————————————————————— function setFaxNumber() {     Xrm.Utility.showProgressIndicator(“Loading contact Info..”);     setTimeout(setFaxNumberafterdelay, 3000); } function setFaxNumberAfterDelay() {     var phoneNumber = Xrm.Page.getAttribute(“telephone1”).getValue();...

The post Show Progress Indicator (Out of the box) Microsoft Dynamics 365 CRM V9 appeared first on Microsoft Dynamics 365 Blog.

]]>
Yesterday used a nice feature progress indicator, before we use to write custom JS to show loading progress image but now we can use new JavaScript function of the Xrm.Utility namespace : showProgressIndicator.

  • showProgressIndicator
  • closeProgressIndicator
show progress indicator (loading image)

——————————————————————————————————

function setFaxNumber() {
    Xrm.Utility.showProgressIndicator(“Loading contact Info..”);
    setTimeout(setFaxNumberafterdelay, 3000);
}
function setFaxNumberAfterDelay() {
    var phoneNumber = Xrm.Page.getAttribute(“telephone1”).getValue();
    if (phoneNumber != null) {
        Xrm.Page.getAttribute(“description”).setValue(phoneNumber);
    }
    Xrm.Utility.closeProgressIndicator();

}

———————————————————————————

The post Show Progress Indicator (Out of the box) Microsoft Dynamics 365 CRM V9 appeared first on Microsoft Dynamics 365 Blog.

]]>
2746