Posted by Daryl Orwin in CRM, CRM 2011, Uncategorized
on Sep 22nd, 2011 | 0 comments
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.
Posted by Daryl Orwin in CRM, CRM 2011, CRM 4.0
on Sep 8th, 2011 | 2 comments
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 =...