The delegate-control tag has no wiki summary.
3
votes
1answer
252 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
...
1
vote
1answer
272 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 ...
1
vote
1answer
619 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 ...
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, ...
2
votes
0answers
77 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 ...
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 ...
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.
...
1
vote
0answers
158 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 ...
1
vote
0answers
178 views
AdditionalPageHead Control not appearing in admin.master
I have an AdditionalPageHead Control in my solution in MOSS,
<Control
Id="AdditionalPageHead"
Sequence="1"
ControlSrc="~/_controltemplates/BinaryJam.MyWebApp/jQueryControl.ascx" />
it ...
0
votes
0answers
22 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)
{
...
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 ...