SharePoint 2010 Hide Ribbon by Code behind

If you might want to customize the ribbon, mostly you’ll find posts about how to develop your custom ribbon and put into a tab, group or anything, or you find how to remove buttons. But what if you just want to hide the whole ribbon? For example using custom display forms or edit or new forms, if you want to have some actions like print view or you have the requirement only to show the ribbon if special actions required.

This code should do the work. It might be necessary to put it into the oninit function.

[sourcecode language=”csharp”]

SPRibbon ribbon = SPRibbon.GetCurrent(this.Page);
if (ribbon != null)
{
ribbon.CommandUIVisible = false;
}

[/sourcecode]

If you look into the google search database you’ll find some more examples for using SPRibbon and its attributes – might be interesting.

..:: I LIKE SHAREPOINT ::..

The article or information provided here represents completely my own personal view & thought. It is recommended to test the content or scripts of the site in the lab, before making use in the production environment & use it completely at your own risk. The articles, scripts, suggestions or tricks published on the site are provided AS-IS with no warranties or guarantees and confers no rights.

About Karsten Schneider 312 Articles
Consultant for Microsoft 365 Applications with a strong focus in Teams, SharePoint Online, OneDrive for Business as well as PowerPlatform with PowerApps, Flow and PowerBI. I provide Workshops for Governance & Security in Office 365 and Development of Solutions in the area of Collaboration and Teamwork based on Microsoft 365 and Azure Cloud Solutions. In his free time he tries to collect tipps and worthy experience in this blog.

Be the first to comment

Leave a Reply

Your email address will not be published.


*