Hide MS CRM 4.0 Grid Button

I am regular visitor of ms CRM forums, I found this question many times, to hide MS CRM gird button. Which cannot be implemented through supported customization. We can implement this through unsupported customization. For example we want to hide assign button on opportunity grid toolbar. So we can do this by writing script to hide this button on Homepage.aspx in “CRM_root” folder. You need to follow below steps

Step1: first get ID of assign button through Developer tools (IE8) or IE developer toolbar (below IE8)

Step2: Open Homepage.aspx page in visual studio or in notepad.

Step3: Search for “window.onload” function.

Step4: Paste this script there

var _AssignID=document.getElementById(“_MBdoActioncrmGrid3assign“);
if(_AssignID!=null)
_AssignID.style.display=’none’;

 Using same way you can hide other buttons on the Grid toolbar, you just need to get ID of the grid toolbar button.

2 thoughts on “Hide MS CRM 4.0 Grid Button

  1. Pingback: 2010 in review « Mahender Pal

Leave a Reply

Your email address will not be published. Required fields are marked *