-
Popular posts
-
Tags
Add-In Administration BDC CAML Certificate Certifications Configuration Content Types CSOM Database Deployment ECB External Content Types FBA Fields Impersonation InfoPath installation JavaScript jQuery Logging Metadata Properties MVP Packaging Performance PowerShell Provider-Hosted REST Ribbon Search security Self-Signed Certificate SharePoint SharePoint Designer SharePoint Short SP2019 SQL Taxonomy Timers User Control Visual Studio WCF WebPart Workflow Workflow Activity
-
Categories
- .Net (2)
- Deployment (1)
- Development (1)
- General (11)
- InfoPath (7)
- JavaScript (3)
- Office (1)
- SharePoint (110)
- Configuration (15)
- CSOM (2)
- Designer (3)
- Installation (5)
- Security (2)
- Taxonomy (4)
- Workflow (9)
- SharePoint Shorts (22)
- SQL (3)
- Unit Tests (1)
- Visual Studio (4)
Category Archives: SharePoint
Task locked by Running Workflow and Cannot be Edited
If you’re trying to update a task item that is linked to a running workflow using code similar to public UpdateTaskItem(SPList taskList, int identifier, string newValue) { taskItem = taskList.GetItemById(identifier); // Update task item taskItem["fieldname"] = newValue; taskItem.Update(); }public UpdateTaskItem(SPList … Continue reading
Remove property from SPPropertyBag
Have you ever tried to remove a property from a SPWeb object and after applying the update, when you next check for the property it is still there? Logically, you’d think the following code would do this for you: webObject.Properties.Remove("yourkey"); … Continue reading
Open with Explorer on Server
If you’re developing with SharePoint using Windows Server 2008 (will work with Windows 7, unless someone’s restricted the Windows Features that are installed) and are unable to open a library via Windows Explorer, follow the simple steps outlined below to … Continue reading
Farm Install Guide – Part 4
This is the fourth and final part of a post showing the typical steps required to install and configure a medium sized SharePoint Server 2010 farm. Other pages of this post include: Part 1 – General Notes and Installation Accounts … Continue reading
Farm Install Guide – Part 3
This is the third part of a post showing the typical steps required to install and configure a medium sized SharePoint Server 2010 farm. Other pages of this post include: Part 1 – General Notes and Installation Accounts Part 2 … Continue reading