Hi, I am new to CRM 2011.I have tried to disable Save Ribbon Button using <RibbonDiffXml> tag in customizations.xml. I was not able to find any customization tag regarding Save Ribbon button. So I have referred and tried the following Java Script code in Onload event of the form.
function hide()
{
var bid = "Mscrm.HomepageGrid.account.Save";
var btn = window.top.document.getElementById(bid);
if(btn)
{
btn.disabled = true;
}
}
I got the following error.

Please Kindly help me and please teach me if any other alternative way to hide Save Ribbon Button Thanks.
*This post is locked for comments
I have the same question (0)