Last active
June 27, 2018 16:15
-
-
Save vaderj/e95962bd38de48404804c15fcd637ce4 to your computer and use it in GitHub Desktop.
Show list view ribbon #Javascript #SharePoint
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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