Daily Archives: January 11, 2016

Transformer! 3.0 is available. Convert your CRM 4.0 JavaScript to 2011+ in minutes

Version 3.0 of Transformer! for Dynamics CRM is now available. The main addition to this version is the ability to read Dynamics CRM 2011+ solution files. In addition, the following conversions were added: crmForm.all.name.DataValue = crmForm.all.ownerid.InnerText; Converts to: Xrm.Page.getAttribute("name").setValue(Xrm.Page.getAttribute("ownerid").getValue()[0].name); if (crmForm.all.new_location.InnerText != "Pool") { Converts to: if (Xrm.Page.getAttribute("new_location")[0].name != "Pool") { var tab = document.getElementById(‘tab’ […]

Continue reading

Transformer! 3.0 for Dynamics CRM Released

Version 3.0 of Transformer! for Dynamics CRM is now available. The main addition to this version is the ability to read Dynamics CRM 2011+ solution files. In addition, the following conversions were added: crmForm.all.name.DataValue = crmForm.all.ownerid.InnerText; Converts to: Xrm.Page.getAttribute(“name”).setValue(Xrm.Page.getAttribute(“ownerid”).getValue()[0].name); if (crmForm.all.new_location.InnerText != “Pool”) { Converts to: if (Xrm.Page.getAttribute(“new_location”)[0].name != “Pool”) { var tab = document.getElementById(‘tab’ […]

Continue reading