CRM 4.0 Hiding buttons (works with custom bottons)

Great script for hiding buttons on forms, this can be used for both custom buttons or out of the box buttons. Code is from DMCRM and can be found here. onload //Get all of the List Elements var lis = document.getElementsByTagName(‘LI’); var i = 0; //Loop through the list items while (i < lis.length) { [...]

Customize Marketing List (List Member View)

oday i wanted to customize the ‘All Members’ view on the Marketing List entity and couldn’t. I was stuck for 1 hour trying to figure out how to do this. I stumbled upon http://blogs.msdn.com/crm/archive/2008/04/02/customize-marketing-list-list-member-view.aspx and Jim explained it perfectly.

Add a button to a form to hide a section

A very interesting method of using a button to hide an entire section from MSCRMBLOG.net. I am thinking of a great way to use this method to hide several 1-many sections that are linked in an IFRAME.

CRM 4.0 Hide Left Navigation Bar

I have been looking for a script that will hide the entire left navigation bar in MSCRM 4.0. for a custom entity. I found this forum response here and it works well! document.all.crmNavBar.parentElement.style.display = "none"; document.all.tdAreas.colSpan = 2;

Formatting CRM 4.0 Phone Numbers

Here are a couple of great scripts for formatting phone numbers in CRM 4.0 that were posted as a responses to the East Region Microsoft CRM Blog. /* This code formats the phone number, allowing up to a 5 digit extension to be displayed on the same line. The following code example shows how to [...]

Free CRM Auditing Tools

Menoo te Koppele has posted an article on free CRM Auditing, I have not reviewed these tools but they seemed to be priced well.

Dynamics CRM 4.0 Tools

I once kept all of my CRM 4.0 tools on a portable usb drive, however this worked most of the time I do not always have the location of the original tool. Well why not keep them here? Other tools can be found on CODEPLEX CrmDiagTool4 for Microsoft CRM 4.0 Microsoft Dynamics CRM 4.0 Documentation [...]

Displaying CRM Advanced Find Views in IFRAMES

Interesting article on howw to display the result set of an advanced find grid in an IFRAME. I have not tried it yet but I think this may be very useful. http://jamesdowney.net/blog/post/Displaying-CRM-Views-in-IFRAMES.aspx

Customize Marketing List Members (List Member View) CRM 4.0

One of the sales guys initiated a question on updating the columns for the Marketing List Members View in CRM 4.0. I was less than optomistic on how, but I found the following blog posting from the Microsoft Dynamics CRM Team Blog which shows you how. Whew, an odd one at best I must say? [...]

Default Task Values Using the OnLoad Event

The default duration and due date are annoying in CRM, Sonoma Partners has provided some basic code to set the default duration to blank and the due to date to the current date and time stamp. This is opposed to the following image where the due date is blank and the duration is 30 minutes. [...]