Posts

Showing posts with the label 2015

Refresh a Web Resource in Dynamics CRM 2015

Use the following function to refresh the Web Resource on your form. Just remember to pass the parameter for your Web Resource Name. function refreshWebResource(myWebResourceName) { //get and validate current id var currentId = Xrm.Page.data.entity.getId(); if (currentId != null && currentId != undefined && currentId != "") { //get and set the querystring from the control     var querystring = Xrm.Page.getControl(myWebResourceName).getSrc();     Xrm.Page.getControl(myWebResourceName).setSrc(querystring + "&data=" + currentId); } }

Microsoft Dynamics CRM 2015 New Features and Some Training

As you are aware Microsoft Dynamics CRM 2015 has been released, below are two very good links for training and new features. This is for CRM end users. http://www.microsoft.com/en-us/dynamics/crm-help-center/default.aspx This is for CRM Administrators. http://www.microsoft.com/en-us/dynamics/crm-setup-and-administration/default.aspx