3506 Views
2 minute read
Categories
SharePoint Custom Development

SharePoint 2013 Hidden Ribbon

9mt6D

I am on the fence about this new feature of SharePoint 2013. I guess I drank the Kool-Aid about how the ribbon was the best UI invention every, and how your average user will perform 95% of all actions in the first tab. So when I got to play around with the 2013 preview I was ehhh about the ribbon being hidden by default. I had to click on a document then click on the ribbon to get my actions for that document. Introducing an extra click for a user is a little puzzling, but I guess MS got such negative feedback about how “in your face” the ribbon was in 2010 that they had to change it in SharePoint 2013.

So what is the alternative? SharePoint 2013 gives us a new list of common actions (and preview) in their new Ellipsis feature. This is probably the answer that will your users are looking for when they come and ask you what happened to the drop down, or how do I access the actions with a single click. As you can see from the screen shot, there are only 3 actions available though (Share, Edit, and Follow).

New Ellipsis options for a word document:

What if your users demand that the ribbon shows when they click on the document? I wrote a quick little script using the new mQuery (see my future post about what mQuery is) that clicks the “Files” or “Items” tab when you click on an item.

EnsureScriptFunc("mquery.js", "m$", function() {
 m$("#onetidDoclibViewTbl0 > tbody > tr").click( function() { 
 m$(".ms-cui-ct-first > a").click(); 
 });
 });

Before:

After:

Matthew Maher

About Matthew Maher

Matt Maher is a technical architect with Netwoven who has been working with Fortune 500 companies implementing large scale enterprise systems for the last 10 years.

Matt is an early member of the Netwoven team and has helped grow Netwoven from it’s infancy to the current stages. Matt is passionate about User Interface, SharePoint, Social, and Digital Marketing. His leadership and expertise have helped companies build intuitive, highly effective websites and applications.

Matt holds a BS in Computer and Informational Sciences from the University of Massachusetts.

LinkedinTwitterFacebook

1 reply on “SharePoint 2013 Hidden Ribbon”

Leave a Reply

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




Enter Captcha Here :