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.IsThrottled

If it returns True, the the List has been throttled and it will have more items then he throtle limit.
If it returns false, it has less items then the Throttle limit or throttling has been disabled via the EnableThrottling property.

To re-enable throttling on a list, simply run
 

$list.EnableThrottling = $true
$list.Update()





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 handy script which can be used in different scenarios based on URL parameters.

/Lists/Tasks/NewForm.aspx?Title=this is a test of text field

2009-05-31_131517.png

This is what you will get it as text assigned on field text box.

This script file can be used in any module not limited to SharePoint only but any web application.

Reference : https://spff.codeplex.com/