CRM 2011 Rollup 4 Released

Microsoft has released Rollup 4 for CRM 2011. This rollup has already been applied to their CRM 2011 Online environment and will be released on windows update Sept 27,2011.
read more

CRM: Disable Notes via javascript on the form

Here’s a script that I have used for a while now to disable notes on a form.  Typically I would use this on the disabled form of an entity in which we do not want further notes to be added (for whatever reason). function DisableNotes() { var iframe = document.getElementById("notescontrol"); if (iframe.readyState == 'complete') { //Hide 'Create a New Note' link var notesButton = window.frames[0].document.getElementById('newNoteButton'); notesButton.style.visibility="hidden"; var NotesTable =...
read more