Permormance issue GetItemById

7 Sep

Be careful with the use of GetItemById(), there are two options to use it: SPList.Items.GetItemById() SPList.GetItemById() The difference between the two is that the SPList.Items.GetItemById() loads every item into memory and then filters the set. Trust me: this can cause … Read More »

jQuery SPServices and autocomplete

21 Aug

On Codeplex the SPServices library is available. This is a jQuery library for SharePoint Web Services. One of the functions available in the library is the SPAutoComplete: http://spservices.codeplex.com/wikipage?title=%24%28%29.SPServices.SPAutocomplete   The SPAutocomplete lets you provide values for a Single line of text column … Read More »