Thursday, July 25, 2013

SharePoint Foundation 2010 is not supported on Microsoft SQL Server 2014.

https://technet.microsoft.com/en-us/library/cc288751(v=office.14).aspx

Sunday, June 2, 2013

How to hide 12:00 AM from Calendar View

try
var elementlink = document.getElementsByTagName('a');

for(var i=0; i < elementlink.length; i++) {
      elementlink[i].innerHTML = elementlink[i].innerHTML.replace("12:00 AM","");
    }