Wednesday, August 12, 2015

Throttling on a list-by-list basis

Farm Administrator can disable Throttling on a list-by-list basis.  To do this, run the following:$web = Get-SPWeb http://webURL$list = $web.Lists["ListName"]$list.EnableThrottling = $false$list.Update()    To validate the Throttling settings are effective, run:$list.IsThrottledIf it returns True, the the List has been throttled and it will have more items then he throtle limit.If...Read more

Tuesday, August 11, 2015

JavaScript module, using jQuery, for manipulating SharePoint form fields from the URL

This is nothing new that I have built but this was one of the requirement where I can not implement custom solution of SharePoint and here it is showing nice and how powerful JQuery and JavaScript for some of nice implementation.   I would like to add this as my reference as this is really very...Read more