Sign in
SharePoint Developer Support Team Blog
The Official blog of the SharePoint Developer Support Team
Tags
Alerts
AlertTemplate
API
App Parts
Apps
Association/Initiation Forms
BCS
Browser back button
Browser Cache
Calendar
Claims Provider
Client-Side Rendering
CMIS
CMIS APIs
CMIS Contains
CodeSample
Compilation Error
Content Query
Customization
Delegate Controls
Deleting single event
Deployment
Discussion Board
Discussion Board Posts
Editor Controls
Event Handlers
External Content type filter
External Lists
Features
HowTo
iFilters
JavaScript
JQuery
JSOM
LDAP Query
ListView control
Meetings
Microsoft.SharePoint.Sandbox.dll
Minimal Download Strategy
MOSS 2007
Multi-Value Lookup
New IE Window
Object Model
On-Demand
PropertyBag
PropertyMapping
Recurring Event
RegisterModuleInit
Remote Event Receivers
Rich Text Editor
RTE
RunWithElevatedPrivileges
Sample Code
SharePoint 2007
SharePoint 2010
SharePoint 2013
SharePoint 2013 Project and Item Templates
SignOut
Silverlight
SPAlert
Upload Control
Upload redirection
User Profile Synchronization Connections
User Profiles
User Profiles and BCS
Visual Studio
Visual Studio 2012
WebAnalytics
WebDeleting
Workflow
Workflow Architecture Series
Workflow Custom Actions
Workflow History
Workflow Name
WorkflowContext
XSL
Browse by Tags
TechNet Blogs
>
SharePoint Developer Support Team Blog
>
All Tags
>
howto
Tagged Content List
Blog Post:
HOW TO: Generate Document IDs for custom content types with Inherits=False
spdevspt
This blog post is a contribution from Deepak Kumar, an Engineer with the SharePoint Developer Support team. The “Inherits” attribute of the custom content type when set to “False” indicates that the custom content type will only inherit Fields that were in the parent content...
on
17 Apr 2013
Blog Post:
HOW TO: Use REST to POST in Hosted SharePoint Apps
spdevspt
This blog post is a contribution from Mustaq Patel, an engineer with the SharePoint Developer Support team. This blog post demonstrates the use of SharePoint 2013 REST from AppWeb to issue HTTP POST on HostWeb. This does not require cross domain calls or the use of SP.RequestExecutor.js. Cross-site...
on
15 Apr 2013
Blog Post:
HOW TO: Add a custom field to blog posts in SharePoint 2013
spdevspt
This blog post is a contribution from David Wilborn, an engineer with the SharePoint Developer Support team. I recently worked a project where we needed to add a custom field to blog posts and use the new Client Side Rendering in SharePoint 2013 to display the field. My first thought was to create...
on
9 Apr 2013
Blog Post:
HOW TO: Delete AD group from SharePoint site collection using web services
spdevspt
This blog post is a contribution from Bharat Rathod, an engineer with the SharePoint Developer Support team. I recently worked on a project where we had to delete an AD group which has permissions on a specific site collection. Since we had a limitation to not use server object model, I used web...
on
25 Mar 2013
Blog Post:
HOW TO: Programmatically delete a single instance of a recurring event in a SharePoint calendar
spdevspt
This blog post is a contribution from Kevin Jacob Kurian, an engineer with the SharePoint Developer Support team. When we edit a single instance of a recurring event, it actually creates a new instance of the event and deletes the old one. The old instance is deleted by setting certain attributes...
on
25 Mar 2013
Blog Post:
HOW TO: Create UserProfile Synchronization connection to BCS and map User Profile Property to BCS field in SharePoint 2010
spdevspt
This blog post is a contribution from Mustaq Patel, an engineer with the SharePoint Developer Support team. The end goal is to populate User Profile Property values from an external database. From SharePoint 2010 UI, this requires the following three steps: 1. Create BCS Model. Have Finder...
on
18 Mar 2013
Blog Post:
HOW TO: Display runtime-generated data in a ListView control in SharePoint web part
spdevspt
This blog post is a contribution from Bharat Rathod, an engineer with the SharePoint Developer Support team. We often find that ListView control is used to display data which is fetched from a database directly. After reading a lot of articles where I could not find the specific article that talks...
on
15 Mar 2013
Blog Post:
Using SPSite and SPWeb objects with RunWithElevatedPrivileges: Don’t cross the borders
spdevspt
This blog post is a contribution from David Wilborn, an engineer with the SharePoint Developer Support team. Although it’s mentioned in the SPSecurity.RunWithElevatedPrivileges documentation , I find that there is still often a lack of clarity for developers when using SPSite and SPWeb objects in conjunction...
on
13 Mar 2013
Blog Post:
HOW TO: Programmatically modify values of people and groups column of type multi-value using Lists.asmx in SharePoint 2010
spdevspt
This blog post is a contribution from Bharat Rathod, an engineer with the SharePoint Developer Support team. In this post, I’ll show you how to use UpdateListItems method of the Lists.asmx web service to modify a ListItem which has multi-value people and group column. Most of us tend to fall into...
on
13 Mar 2013
Blog Post:
HOW TO: Customizing SharePoint AppWeb web template
spdevspt
This blog post is a contribution from Mustaq Patel, an engineer with the SharePoint Developer support team. SharePoint Apps provides a great deal of flexibility and how much we can do with it. Using WebTemplate we can direct AppWeb (the SPWeb under which the App is hosted) to use any other Site Template...
on
2 Nov 2012
Blog Post:
HOW TO: Create a custom ASPX association and initiation forms for Visual Studio Workflow
spdevspt
This post is a contribution from Himani Sharma, an engineer with the SharePoint Developer Support team. Requirement You want to use custom Association and Initiation forms with your Visual Studio workflows. InfoPath forms do not fulfill your requirement due to the limitation they pose in terms of controls...
on
25 Sep 2012
Blog Post:
HOW TO: Programmatically set/pass WorkflowContext from a Visual Studio workflow to a custom workflow action in SharePoint 2010
spdevspt
This post is a contribution from Himani Sharma, an engineer with the SharePoint Developer Support team. Scenario: You have a workflow custom action that you’d like to be used in SharePoint 2010 workflow. This activity uses Microsoft.SharePoint.WorkflowActions.WorkflowContext to obtain WorkflowContext...
on
25 Sep 2012
Blog Post:
HOW TO: Include symbols in rich text editor in MOSS 2007
spdevspt
This post is a contribution from Jaishree Thiyagarajan, an engineer with the SharePoint Developer Support team. Note: The below walk-through is based off of a publishing site. We can include symbols in rich text editor in MOSS 2007 in just 3 easy steps. Step1 Copy the image (symbol.jpg) to C:\Program...
on
7 Sep 2012
Blog Post:
HOW TO: Not allow a user to add multiple items of a meeting at the same time & date in a Calendar list for a user in SharePoint 2010
spdevspt
This post is a contribution from Bharat Rathod, an engineer with the SharePoint Developer Support team. By default, SharePoint 2010 allows you to add multiple items in the calendar for the same date and time. Below screenshot shows that Meeting1 and Meeting2 occur at the same date and time for...
on
1 Aug 2012
Blog Post:
A case of custom email templates not used when alerts are created from code in SharePoint
spdevspt
Recently, I had a case where customer was creating SPAlert object using SharePoint object model code and things were not working out well. What seem to happen was that whenever the condition that warrants alert trigger is met (e.g., an item is changed in a list), the alert email that was sent out was...
on
29 May 2012
Blog Post:
How to subscribe for an alert for a “Post” in discussion board programmatically
spdevspt
This post is a contribution from Jaishree Thiyagarajan, an engineer with the SharePoint Developer Support team. Let’s first talk about some basic facts about discussion board and alert terminologies. Discussion Board We all know about discussion board. Discussion board is where we can add “posts” and...
on
28 May 2012
Page 1 of 1 (16 items)