Being with System Administrator privileges, every single button in Customization tab in every entity is greyed out. I checked that i do really have customize permissions assigned.
By digging deeper, I downloaded Visual Ribbon Editor for CRM 2011 to see what's happening, for example, with Form Editor button. I see that "Enabled rule" is determined by Mscrm.RibbonActions.isFormDesignValid function located in /_static/_common/scripts/RibbonActions.js.
This function just checks if EntityTipe is not ActivityPointer:
isFormDesignValid = function(entityTypeCode) {
switch(entityTypeCode) {
case Mscrm.EntityTypeCode.ActivityPointer:
return false;
default:return true
}
};
However, when calling the (Form editor) action directly function Mscrm.FormEditor.OpenFormEditor(Mscrm.EntityTypeCode.Account, "main") from console, the form editor pops up.
How do I fix the issue? :(
Using CRM 2011 Rollup 15. Just upgraded from Rollup 6 where I had the same problem.