SharePoint 2010 OOTB Features

The following are the features installed by SharePoint 2010 Enterprise.  I frequently need to find what a feature is associated with a feature id during development, and hence the table.

As all feature titles and descriptions are localized, I have extracted the localized strings for each of the strings from english langauge installation.

Hope this helpful.

by Niral on Mon, 09/08/2010 - 2:44pm   •  

70-542 Study Resources

This is the collection of resources I have gathered over the course of my preparation for the Microsoft Exam 70-542. The primary reason for collection this information is that there is no comprehensive resource for this exam available on the net, unless one opts for a paid resources. After working more or less exclusively on SharePoint 2007 for last 2 years, I see no reason for me to go for paid resources.
Sharepoint, Microsoft, Exam, 70-542,
by Niral on Wed, 24/12/2008 - 12:45pm   •  

Add choices to Sharepoint Multi-Choice Field

Setting field values of a list item in SharePoint is easy.  But when it comes to Multi-Choice fields, the code is a big different.  The following code shows how values can be added to a multi-choice field.

 

SPFieldMultiChoice choiceField = (SPFieldMultiChoice)myWeb.Fields["choiceFieldName"];

choiceField.Choices.Add("Value");

//Set PushChangesToLists to true if automatic update of List or Content types is required

choiceField.PushChangesToLists = false; 

choiceField.Upate();

by Niral on Mon, 19/05/2008 - 12:21pm   •  

Use CAML Query to Read Data from lists or Libraries

One way to read the data from a list or a library is to iterate through it using the items collection of the list or library. But this is not the most efficient way to do it, specially if only few items are needed from this list.

Enter CAML Queries.

The following is the example query

 

<Where>

  <Eq>

    <FieldRef Name="Title" />

      <Value Type="Text">title</Value>

  </Eq>

</Where>

by Niral on Mon, 19/05/2008 - 10:41am   •  

Sharepoint Delay Activity Timer

Sharepoint Delay Activity is rounded off to the minute interval that is setup for 'job-workflow' property. This is because the job is responsible for waking up the workflow at the specified time. This job is usually set to run every 5 minutes.

It is easy to change (increase or decrease) this value.

To get the current job interval value:

C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\BIN\stsadm -o getproperty -pn job-workflow -url http://siteaddress

Or to change it every minute

by Niral on Mon, 21/04/2008 - 9:09am   •  

Pages

  • Subscribe to Niral.Net RSS