29. June 2010 23:53
by Chaks
0 Comments
If you are using Client Object Model to create Fields, you will be working with the Field class: private static void AddFieldsToProjectsList()
{
String fldDescriptionXml = String.Format(FieldXml,
"<guid>",
...
[More]
16. June 2010 13:22
by Chaks
1 Comments
If you are using JavaScript Client OM for building SharePoint 2010 solutions, especially manipulating the Ribbon, building modal dialog boxes etc., , you might be wondering how I can get IntelliSense working for my JavaScript code. It is actually very simple. At the top of your .js file, yo...
[More]
2. June 2010 21:57
by Chaks
0 Comments
So you have created a very cool site workflow in SharePoint Designer 2010, published and you want to start programmatically. Below is the code snippet to start a site workflow. Credit goes to MSDN user Paul Turner : static void Main(string[] args) { using...
[More]