13 Mart 2019 Çarşamba

Lock all fields on a form using Javascript- Microsoft Dynamics CRM

Hi,

The below code takes the control of the form directly rather then of each field and locks all of them.

 function disableFormFields()

{
      Xrm.Page.ui.controls.forEach(function (control, index) {
           var controlType = control.getControlType();
           if (controlType != “iframe” && controlType != “webresource” && controlType != “subgrid”)

           {
               control.setDisabled(true);
           }
       });
}

10 Ocak 2017 Salı

Dynamics 365 – Editable Grids JavaScript Example

You can reach the article at this link.


To update the MS CRM 2016 to Dynamics 365

You can download the December 2016 Update for Dynamics 365  at below link.
https://www.microsoft.com/en-us/download/details.aspx?id=54515

21 Haziran 2016 Salı

CRM-Performance-Toolkit

The Microsoft Dynamics CRM 2015 Performance Toolkit was created by the Microsoft CRM product team to formalize performance testing of Microsoft CRM 2013 and later releases. The performance toolkit can be used by the Microsoft CRM partners and customers to collect data to support their CRM deployment decisions.

 download link: https://github.com/Microsoft/CRM-Performance-Toolkit

22 Mayıs 2016 Pazar

Microsoft CRM Record Recovery

Record Recovery gives a system user the ability to recover deleted CRM records. Providing that auditing is enabled this tool can utilise auditing data to recover deleted records. Record Recovery has been produced using the Microsoft Silverlight 4 framework and integrates seamlessly into Microsoft Dynamics CRM 2011. Record Recovery is one tool that CRM developers and consultants alike should have in their arsenal.
This tool should not neglect the importance of database backups and data restoration. However, if you require restoring a handful of accidently deleted records, and you have audit records of the deletion, then this is the tool for you.
You can download from the link

MSCRM ToolKit is a collection of useful tools for people working on Microsoft Dynamics CRM 2011,2013 and 2015 projects

You can download in this link