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' […]
↧