Category Archives for "DynamicsCRM"

CRM Data Explorer 3.1 released

Hi Everyone, Version 3.1 of the CRM Data Explorer has been released. You can download the new version here: http://www.crmaccelerators.net/products/crm-data-validation-2/crm-data-explorer-download-trial-request/ This release is mainly to correct connection issues with Office 365 and CRM On Premise with ADFS. If you had connection issues with the previous version, I would suggest you download the new version and […]

Continue reading

JavaScript Conversion: Removing unnecessary code #1. Adding mailto to an email-enable text field

Occasionally I will run into JavaScript that was added to a form to provide functionality desirable by the business. I have seen several instances where code such as this:   if (crmForm.all.emailaddress1 != null) { crmForm.all.emailaddress1.ondblclick = function () { var email = crmForm.all.emailaddress1.DataValue; if ((email != null) && (email.length > 0)) { window.navigate(“mailto:” + […]

Continue reading

JavaScript Conversion: Handling Automatic Semicolon Insertion

One of the most difficult parts of converting JavaScript from CRM 4.0 to 2011 is handling situations where the developer did not use a terminating semicolon.  Actually, this is a problem with JavaScript in general, as I was reminded this week when I listened to the Drama episode of the This Developer’s Life podcast.  That […]

Continue reading

3 JavaScript Conversion Discussions Webinar Recording and Materials

JavaScript Conversion Discussions Webinar (September, 2012) We’ll discussed the technical aspects of converting your JavaScript from CRM 4.0 to CRM 2011, as well as the processes that will aid in the overall upgrade process.   Tools to Help Your Conversion: JavaScript Converter http://dynamicsxrmtools.codeplex.com   CRM JavaScript Conversion Assistant http://www.crmaccelerators.net/products/crm-migration-assistant-2   CRM Code Validation Tool http://blogs.msdn.com/b/crm/archive/2012/06/21/microsoft-dynamics-crm-2011-custom-code-validation-tool-released.aspx   […]

Continue reading

CRM JavaScript Conversion Assistant 2.0 Released. New name, new features, new price

I am very proud, and a little relieved, to announce that general availability of the CRM JavaScript Conversion Assistant 2.0. Download the trial version now or visit our product page for more information.   New Name The product formally known as the CRM Migration Assistant has been renamed to the CRM JavaScript Conversion Assistant to […]

Continue reading

2 Converting to CRM 2011 JavaScript: Unsupported Internal Functions and Properties

I’ve seen a lot of CRM 4.0 JavaScript over the past year and a half as I work on my JavaScript conversion tool: CRM Migration Assistant. A lot of us used unsupported customizations to create a user experience that fit the needs of the customer.  Sometimes these customizations were very unsupported and used internal functions […]

Continue reading

Upcoming Webinar: JavaScripting with Dynamics CRM 2011

JavaScript allows an administrator to enhance the functionality of Dynamics CRM 2011 in order to better fit your business processes. This Lunch and Learn session delivers an introduction to JavaScript development and will cover the following topics: Setting up your development environment Introduction to the form editor Using web resources CRM form events JavaScript basics […]

Continue reading

CRM Migration Assistant 1.4 Released

We are releasing version 1.4 or our CRM JavaScript conversion tool, CRM Migration Assistant, today.   The trial version can be downloaded here.   Version 1.4 contains the following changes:   Fix: Two-byte characters improperly converted from a customization zip file If you attempted to convert an exported customization file that contained two-byte characters, like […]

Continue reading

CRM Migration Assistant 1.3.3 Released

We have released a small update to the CRM Migration Assistant which includes the following updates: Added 0 and 1 as supported Submit Options Fixed issues with converting .AddOption to .addOption method. Conversion alerts were added for the following JavaScript properties: .title .vAlign .contentEditable .innerText Any .style property that is not either display or visible […]

Continue reading