Skip to content

Instantly share code, notes, and snippets.

@vaderj
Last active June 27, 2018 16:15
Show Gist options
  • Save vaderj/e95962bd38de48404804c15fcd637ce4 to your computer and use it in GitHub Desktop.
Save vaderj/e95962bd38de48404804c15fcd637ce4 to your computer and use it in GitHub Desktop.
Show list view ribbon #Javascript #SharePoint
//Expose the ribbon : http://spjsblog.com/2012/01/12/bring-back-the-missing-list-tools-menu-in-list-view-with-multiple-webparts/
ExecuteOrDelayUntilScriptLoaded(init_defaultWP, "sp.ribbon.js");
function init_defaultWP(){
setTimeout(function(){
var defaultWP = document.getElementById("MSOZoneCell_WebPartWPQ2");
WpClick({target:defaultWP,srcElement:defaultWP});
},100);
hideRibbonPieces() ;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment