Skip to main content

Posts

Showing posts from September, 2017

Expand ALL & Collapse ALL in Sharepoint Library Group View

 <input type="button" value="Expand ALL" onclick="ProcessAll(this)"  style='color:white;background-color:darkgreen;font-weight:bold;'/> <script> function ProcessAll(btnobj) { if(btnobj.value=="Expand ALL") { expandAllData(); btnobj.value="Collapse ALL"; } else { collapseAllData(); btnobj.value="Expand ALL"; } } function  expandAllData() { $("img.ms-commentexpand-icon").click(); } function  collapseAllData() { $("img.ms-commentcollapse-icon").click(); } </script>

Clear Your SharePoint Designer 2010/2013 Cache

Procedure: Close SPD if it is open   Open My Computer   a.Click the address bar   Paste in: %USERPROFILE%\AppData\Local\Microsoft\WebsiteCache   Delete everything within this location   Click the address bar   Paste in: %APPDATA%\Microsoft\Web Server Extensions\Cache   Delete everything in this location SharePoint Designer 2010 and 2013 Navigate to the "File" menu then select "Options" -> "General" -> "Application Options". On the “General” tab, under the “General” heading, uncheck “Cache site data across SharePoint Designer sessions”.