Clear SharePoint Designer 2013 Cache

Sometimes SharePoint Designer 2013 gets confused. One way to get it back on track is to reset it’s cache. Clearing the cache will remove any of your past connection history as well provide you a “clean slate” to work from.  The cache is not even cleared after doing a reinstall, so this is the only way to clear it. SharePoint Designer has a little habit of caching files, including say the XML/XSLT, JS and CSS you might be working with on your site.

  1. Close SharePoint Designer if it is open
  2. Open Windows Explorer, Click the address bar and Paste “%USERPROFILE%\AppData\Local\Microsoft\WebsiteCache” and delete everything within this location.
  3. Open Windows Explorer, Click the address bar and Paste “%APPDATA%\Microsoft\Web Server Extensions\Cache” and delete everything in this location.
  4. Go to SPD2013 options –> General –> Application Options –> Uncheck the “Cache site data across SharePoint Designer sessions”

1

2

Relaunch SDP. Easy!

Quick Search in SharePoint List Using JQuery

In this post I am going to implement a quick search in SharePoint list using JQuery that allows you to search records in a list. It is useful in a situation where you don’t have SharePoint Search setup and just need a simple way of performing search operations in a SharePoint List.

To outline the solution please follow the below steps –

  • Download the latest JQuery file from Here
  • Create a Custom SharePoint list in which you would like to implement the search
  • Open the SharePoint Designer
  • Go to All Files-> Lists->Select the name of the list we just created
  • Paste the JQuery file (jquery-min.js) we just downloaded
  • Create a new JavaScript File-> Rename the file as “QuickSearch.js”
  • Open “AllItem.aspx” view and add the reference of both the JQuery file

    <script type=”text/javascript” src=” QuickSearch.js”>

    <script type=”text/javascript” src=”jquery-min.js”>

  • Now Edit the “QuickSearch.js” file, type below code and Save the file

$(document).ready(function(){

$(“input.search”).change(function() {

     var txt = $(“input.search”).val();

     if (txt) {

              $(“#WebPartWPQ1”).find(“tr.ms-itmhover:not(:Contains(“+txt+”))”).hide();

               $(“#WebPartWPQ1”).find(“tr.ms-itmhover:Contains(“+txt+”)”).show();

                   } else {

                    $(“#WebPartWPQ1”).find(“tr.ms-itmhover”).show();

                  }

           }).keyup(function(){$(this).change();

     });

});

<div style=”padding: 5px; border: 1px solid #cccccc; width: 60%; margin: 10px auto 0pt; background: none repeat scroll 0% 0% #efefef; display: block;”>

<h3 style=”text-align: center;”>TYPE HERE : <input class=”search” style=”padding: 10px;” type=”text”/>

quicksearch2

Explanation : We would like to start our function anytime the search input text is changed. Once it’s changed, it sets the value of a variable we have called “txt”.

Here we have an IF statement that just checks if there is indeed something in the search box, ELSE everything goes back to normal. If there is something inside the search input box, we are going to do two things. First, we’ll find any row that does NOT contain the string, and we’ll hide that row. Then we’ll find any row that DOES contain that string, and we’ll show that row. Finally, we chain a “keyup” function to the change function so that as we type everything is happening all together.

And last but not least, we created a simple search input box with a class of “search”.

Now open the SharePoint List All Item view in internet explorer and If you have done everything correctly then it will filter the items on the basis of your inputs.

quicksearch

PS : You’ll have to change the target WebPart ID it’s searching in and replace it with your current Web Part ID and its row class.

I hope you find this post useful.

Microsoft pushed SharePoint 2016 release in Q2 2016

For those of you who have been waiting for the release of SharePoint 2016, the wait has just became a little longer, Microsoft has delayed the release of SharePoint server 2016 to second calendar quarter of 2016 (Q2 2016). This may be the first time Microsoft has pushed SharePoint release. But on April 16 announcement made by Seth Patton, senior director of product management for the SharePoint team. He confirmed that SharePoint Server 2016 will be available in Q2-2016 instead of 2015 and the first public beta version of SharePoint Server 2016 will be available in fourth calendar quarter of 2015 (Q4 2015).

SharePoint Server 2016 will deliver enhancements and new capabilities in three major areas:

  • Improved user experiences
  • Cloud-inspired infrastructure
  • Compliance and reporting

SP2016


Please check the below URL for the whole article

https://blogs.office.com/2015/04/16/sharepoint-server-2016-update/


If you would like to participate in beta testing, you can enroll here

http://prereleaseprograms-public.sharepoint.com/Pages/BusinessProfile.aspx

Evolution of SharePoint

In this post I’ll describe about SharePoint and its history.

SharePoint is an enterprise server product with an incredibly diverse feature set. It’s a general purpose platform for connecting people with information developed by Microsoft.
It’s interesting to look at how SharePoint has evolved over the years. Most people had their first experience with the SharePoint 2003 or 2007 release like me 🙂
The first branded SharePoint technologies were released in 2001.
⦁ SharePoint Portal Server 2001
⦁ SharePoint Team Services
SharePoint Portal Server was developed as a portal product that helps to aggregate corporate information through navigation and search whereas SharePoint team services helps to organize documents, events, and other digital information. And while both these technologies were great for the scenarios they targeted, they had little integration between them. Customers wanted to use the two technologies in conjunction, and provided strong feedback to Redmond that portal and collaboration were very similar, and should be delivered on a common platform to give businesses more flexibility.
Over the next few years, the two teams worked closely together to deliver a common platform
In 2003, Microsoft launched SharePoint 2003 version-
⦁ Windows SharePoint Services (WSS) 2.0 (free license)
⦁ SharePoint Portal Server (SPS) 2003
These two products were built on a common base platform, with SPS 2003 offering deep portal and search functionality at its core and WSS 2.0 delivering core collaboration capabilities.
With the successful delivery of collaboration and portal technologies in one product, the primary customer and partner feedback to Microsoft was to deliver a platform that combined collaboration, portal, and WCM technologies.
In October 2006, Microsoft fixes many shortcomings of the 2003 product, introduces new features such as Business Data Catalog and InfoPath Form Services-
⦁ Windows SharePoint Services 3.0 (free license)
⦁ Microsoft Office SharePoint Server (MOSS) 2007
SharePoint 2007 was built on top of Windows Server, SQL Server, and the .NET Framework, much like SPS 2003. However, SharePoint 2007 heavily leveraged the .NET Framework (ASP.NET 2.0), which was more mature and had rich functionality, such as master pages and web parts.It delivered an integrated platform that featured collaboration, portal, search, content management, business forms, and business intelligence technologies.
After the 2007 release, Microsoft continued innovating and making strategic acquisitions to deliver the best value to customers and partners. From acquiring FAST search technology to delivering a cloud-based SharePoint service (SharePoint Online).
On May 12, 2010, Microsoft launched SharePoint 2010—at the time, the most anticipated release of SharePoint. It was designed to deliver the most comprehensive and best productivity experience available. SharePoint 2010 came in three main flavors:
⦁ SharePoint Foundation 2010 (which replaced the WSS branding )
⦁ SharePoint Server 2010
⦁ SharePoint Online, available in the Microsoft Business Productivity Online Suite (re-branded as Office 365 in next release).

On October 2012, Microsoft launched SharePoint 2013 final version whereas Office 365 SharePoint Online was out at the end of February 2013.
SharePoint 2013 adds a number of improvements such as better social features, the new SharePoint app development model, and a more sophisticated version of Office 365.
⦁ SharePoint Foundation 2013 (free license)
⦁ SharePoint Server 2013
I hope you liked it, Thanks for reading the blog 🙂