The delegate-control tag has no wiki summary.
0
votes
0answers
25 views
add “Control” class as Delegate Control in SharePoint 2010
i am trying to add below class as delegate control in SharePoint 2010
public partial class ViewSelectorAddPoint : Control
{
private void Internal_OnInit(EventArgs eventArgs_0)
{
...
2
votes
0answers
15 views
Delegate control behind of the scene
We all know about delegate controls and steps that should be done to use it, but what SharePoint exactly do in time when we activate feature?
It looks like it creates a copy of control's declaration, ...
1
vote
0answers
31 views
render MyGlobalNavigationFixup conditionally
I have created a single GlobalNavigation delegate control that displays different markup based on a condition (code below shows only the negative condition, an over simplified version). The ...
3
votes
1answer
262 views
adding link to suite bar in sharepoint 2013
I have followed the following liks to add custom links to sharepoint 2013 suite bar.
http://blogs.msdn.com/b/findnavish/archive/2013/02/07/sharepoint-2013-customizing-suite-bar.aspx
...
2
votes
0answers
78 views
Create submenu item on Ribbon's Splitbutton
I just want to know if it's possible to add submenu on a custom splitbutton by using a delegate control.
I know that the normal way is to use javascript function to create the submenu xml. But I was ...
4
votes
1answer
114 views
Define a new custom DelegateControl tag and ControlId?
I would like to add a new custom-defined DelegateControl to the bottom of my MasterPage so that I can install Google Remarketing markup to the bottom of all my pages with a Feature. I already have the ...
0
votes
3answers
70 views
How to build a complex feature to collect and store user options that drive a delegate control
A long title but hopefully will be enough! Basically, I want to create a feture in Visual Studio that will do the following:
When activated, places an option/link in the site collection options in ...
1
vote
1answer
275 views
Overriding Tree View Data Source in v4.master
I am implementing some custom navigation providers for SharePoint 2010, and have successfully overridden the data source for the Top Navigation and Quick Launch providers using the delegate provided ...
0
votes
2answers
1k views
Adding multiple controls to AdditionalPageHead
My question is regarding the delegate control AdditionalPageHead, as we know it allows multple controls to be loaded.
My questions are:
How to add multiple controls?
I want that the different ...
0
votes
0answers
24 views
Custom delegate is applied even if the feature is deactivated
I have a question regarding a feature.
Situation:
I have a feature that is farm scoped, with this feature I deploy a delegate control (xml file), this file refers to cs code.
So I've added that file ...
1
vote
0answers
122 views
Changing / overwriting OOTB javascript
I've came across an issue when I was modifying / customizing the mini social tag buttons (a delegate control - class), everything went good and well untill I encountered an issue "onmouseover" event.
...
2
votes
1answer
308 views
Delegate control with class.cs
I searched on google for some clarifications but I didn't find the answers I've been looking for.
I want to deploy a delegate which would perform some custom functionality. That is why with a ...
1
vote
1answer
1k views
Customizing SmallSearchInputBox default text
I am trying to customize the text displayed in the search box of my SharePoint site. The default is "Search this site...".
I found a number of articles which explain how to do it (by overriding the ...
1
vote
1answer
633 views
How can I implement SharePoint JSGrid filtering and grouping functionality?
I am working on SharePoint JSGrid. I am able to implement the sort functionality in JSGrid. Now I want to implement the grouping and filtering in my custom JSGrid.
For filtering we have to attached ...
1
vote
0answers
160 views
Using a Delegate Control to add content into the body of the page without javascript
Is there a way to use a delegate control targeting "AdditionalPageHead" to add a control into the body of the page without resorting to javascript? The solution can't involve javascript as the control ...