Tag Archives for " crm2011 "

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

Converting to CRM 2011 JavaScript: Form Elements

One of the most fascinating things I found during the creation of the CRM Migration Assistant is the different methods developers use to access CRM form fields, and other form elements. Normally, people access a form field using the following style of JavaScript: crmForm.all.name This is the normal and perfectly acceptable (and supported) method for […]

Continue reading

Converting to CRM 2011 JavaScript: Form Elements

One of the most fascinating things I found during the creation of the CRM Migration Assistant is the different methods developers use to access CRM form fields, and other form elements. Normally, people access a form field using the following style of JavaScript: crmForm.all.name This is the normal and perfectly acceptable (and supported) method for […]

Continue reading

2 Debugging Sandboxed Plugins

I learned some interesting things about working with Sandboxed plugins last week that I thought I’d share. Attaching to Processes Sandboxed plugins are run by Microsoft.Crm.Sandbox.WorkerProcess.exe so that is the process that you will need to attach to in order to debug your plugin.  If there are more than one, then attach to all of […]

Continue reading

1 Changing the Lead Qualification Status Values

The Lead Entity within Microsoft Dynamics CRM 2011 is used to track your relationship with prospective customers. At some point in the relationship, they change from being simply a Lead into either a customer or someone who is no longer a prospect. The Lead Qualification Process Here is how leads are generally worked by a […]

Continue reading

Multi-Column Sorting Views in Dynamics CRM 2011

Views within Microsoft Dynamics CRM 2011, by default, support up to two pre-defined sortable columns, which are selected when the view is defined. However, it is possible to manually sort any View on multiple columns using a combination of your mouse and keyboard. Let’s walk through the process: Here is a view of some Contact […]

Continue reading

1 Developer Tip ‘o the Day: Ribbons and Web Resources

You can customize the CRM 2011 Ribbon to add additional functionality via buttons, for example. When you add such a button, you use Web Resources to identify things such as icons and JavaScript functions, like this: $webresource:new_CloneRecord.js $webresource:new_CloneRecord32x32 It important to remember that any Web Resources referenced by the Ribbon exist ( added to CRM […]

Continue reading