Monday, September 30, 2013

SharePoint 2013 Online Document set missing columns on edit and view property page

Hi All,

If you ever came across a scenario where you are missing some columns on to Edit item or view property page for a SharePoint 2013 online site then please refer to following post.

http://sharepoint-community.net/profiles/blogs/document-sets-the-case-of-the-disappearing-properties

Here bill Burke has explained, the resolution he found and it works fine for me as well.

Thanks bill for the wonderful post.

Thanks,
Sachin.

Tuesday, September 24, 2013

Get first day of previous month on JavaScript

Hi All,

Please find below javascript code to get the first day of the previous month

var ourDate = new Date();
//roll it back to the last day of last month
ourDate.setDate(-1);
//now that we’re in the proper month, let’s go back to the first day…
ourDate.setDate(0);
// and now we have it
alert(ourDate);


Thanks,

Sachin K.