Click here to Skip to main content
15,867,288 members
Articles / Productivity Apps and Services / Sharepoint

SharePoint 2013 and SharePoint 2010 Delegate Controls

Rate me:
Please Sign up or sign in to vote.
4.00/5 (2 votes)
4 Mar 2013CPOL3 min read 20.8K   4   5
A mechanism to inject a code or control to the SharePoint Master page without touching any code in the SharePoint Master page

SharePoint Delegate control is a mechanism that we can inject a code or control to the SharePoint Master page without touching any code in the SharePoint Master page.

is a container type control which can hold child controls on it

This is the simplest explanation for the SharePoint delegate controls but this also may confuse to you. So let me further simplify.

SharePoint Master Page designs in a way that leaves place holders (Not a place holder really. but for getting an idea) to some controls (Delegate Controls) that has a machinist to inject.

Assume this is our SharePoint Master page.

image

The Red Rectangle (SmallSearchInputBox) is a delegate control. It means the textbox and other functionalities in that search box are not written in the master page. Master page just has a place holder with id SmallSearchInputBox and which is going to dynamically replace by search box in the run time.

Master Page code just looks like this:

image

There are few delegate controls defined in the SharePoint Master page.

Why We Need Delegate Controls

  1. We can inject controls to master page without changing any code. For an example, you need a custom control to put in the place of small search box. So you can create a control and activate the control using a feature. Then control will display in the place of search box but the good thing is that you didn’t touch any master page code.
  2. You can customize the master page delegate controls dynamically by user permissions, URLs, or any other custom rule.
  3. Recently, we have a problem that we need to include some custom user validation for each and every SharePoint page. So we finally decided to put that code in AdditionalPageHead so it will get applied to all pages and we need to simply create a control to inject to the delegate control.

SharePoint 2010 and SharePoint 2013

AdditionalPageHead

This is the top most delegate control in the master page. This delegate allows multiple controls. You can use this delegate to inject JavaScript to SharePoint master, inject custom logic and etc. page. The good thing about the AdditionalPageHead control is it lies between the HTML head tag. Therefore, it is not a control with interface. You can specify a control which only has a code to do whatever you need in onLoad event.

GlobalNavigation

Global navigation is the top most visible control collection. You can add your delegate controls to this location as well.

image

GlobalSiteLink3

This delegate control handles social icons in the site. You can change these two icons by creating delegate control.

image

GlobalDelegate2

SharePoint dashboard control handles using this delegate.

image

GlobalDelegate0

You can change this menu (may be add more items to it) using this delegate control.

image

PublishingConsole

This delegate control holds the server ribbon. Normally we didn't use it for customizing the server ribbon. Of course, if you want, you can.

TopNavigationDataSource

This delegate is used for default top navigation. You can override the data source by adding a custom data source.

SmallSearchInputBox

This control handles small search control in the master page.

image

QuickLaunchDataSource

This delegate control provides a mechanism to override left side panel. So you can create your own data source and set it as a Quick launch data source without changing the master page.

TreeViewAndDataSource

Tree view is the other navigation apart from quick launch and top link. So you can change tree view’s default data source by providing custom data source to this delegate.

New Delegate Controls in SharePoint 2013

SuiteLinksDelegate

This delegate handles these links in SharePoint 2013. So if you want to add another link or some other component, this is the delegate you need to use.

image

SuiteBarBrandingDelegate

This delegate cares about the top left site logo and text. If you are interested in any other, you can put it in here.

image

PromotedActions

You can add controls in between Share and Follow. This holds empty controllers by default.

image

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Sri Lanka Sri Lanka
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Question[My vote of 1] I hate finding someone ripped off a page from somewhere else and took credit Pin
DanRGleason17-Oct-13 12:59
professionalDanRGleason17-Oct-13 12:59 
GeneralMy vote of 4 Pin
Paga Cession26-Jul-13 7:47
Paga Cession26-Jul-13 7:47 
QuestionCan you include code for doing something with the SuiteLinksDelegate? Pin
Paga Cession26-Jul-13 7:47
Paga Cession26-Jul-13 7:47 
QuestionNeed code sample Pin
D I Petersen3-Jul-13 5:28
D I Petersen3-Jul-13 5:28 
GeneralMy vote of 4 Pin
Shabbazz13-Apr-13 0:45
professionalShabbazz13-Apr-13 0:45 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.