Skip to main content

Custom Item in 'Sned To' menu

In my previous post I show how to put some javascript to all pages in a site collection using the delegate control. This is pretty common scenario and the approach with the AdditionalPageHead control works great.

In this post I will use again the approach to solve another issue.

The scenario:  Add a custom item in the ‘Send To’ section in the contextual menu for document. 

The solution: Overwriting the default javascript function in core.js. The javascript function renders the new idem. A delegate control is used to bring the customizations on the pages in a particular web. 

Code Sample: download from here

Explanations:
In such tasks the most normal approach will be using a custom action which most difficult part is to find the correct value for the Location property.

The problem in our scenario is the fact that the Send To menu items are rendered only by javascript. There is no way to use custom action for it so the only option is to find a way to overwrite javascript.

The file CORE.debug.js is located in the \14\TEMPLATE\LAYOUTS\1033 folder. Inside it is the definition of the function AddSendSubMenu which renders the items. The easiest way for overwriting a function in javascript is loading a function with the same name after the original function.

Overwriting of the AddSendSubMenu method defined in the default scripts can be done in the following way:
AddSendSubMenu = function (m, ctx) { }
    _spBodyOnLoadFunctionNames.push("resetAddSendSubMenu");
    function resetAddSendSubMenu() {
         AddSendSubMenu = function (m, ctx) {
            ULSsa6:;            // new logic        }    }
_spBodyOnLoadFunctionNames is an array which contains the names of the functions which are executed when page is loaded. / _spBodyOnLoadFunctionNames is very useful, if you still don’t know it, please explore some posts about it ! /
Another important moment is how to render the new item. After exploring the original code the following code can be extracted:
 if (ctx.listTemplate == 101) { // document library        var itemId = GetAttributeFromItemTable(itemTable, "ItemId", "Id");
        var listId = ctx.listName;
        var source = window.location + "";
        strAction = "STSNavigate('" + ctx.HttpRoot + "/_layouts/SendToItem/SendToPage.aspx?ItemId=" + itemId + "&ListId=" + listId + "&Source=" + source + "')";
        strImagePath = ctx.imagesPath + "sendOtherLoc.gif";
        menuOption = CAMOpt(sm, "My Custom Item", strAction, strImagePath);
        CUIInfo(menuOption, "MyCustomItem", ["MyCustomItem"]);
        menuOption.id = "ID_MyCustomItem";
    }
This code should be located in the correct place in the function so the items are rendered in the correct order.


Comments

Popular posts from this blog

ClientPeoplePicker in SharePoint 2013

Start using SharePoint 2013 I noticed that the way for selecting people or groups is changed. The new way is simple – just ‘Enter name or email address’ without any icons for ‘Check Names’ or ‘Browse’. I guess that the PeoplePicker is changed but NO. PeoplePicker sitll has the same functionality as before. There is a new control called ClientPeoplePicker . How to use it: 1. Add this references <% @ Register TagPrefix ="wssawc" Namespace ="Microsoft.SharePoint.WebControls" Assembly ="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> 2. Add the following control declaration       < wssawc : ClientPeoplePicker          Required ="true"          ValidationEnabled ="true"          ID ="peoplePicker"          runat ="server"          InitialHelpText =" <% $Resources:wss,aclinv_PickerIntialHelperText %> "          VisibleSu

Error: A duplicate field name "xxxx" was found

Soon I have some experience with migrating solution from SharePoint 2010 to SharePoint 2013. The migration was on 3 steps. First one was just to copy the custom fields, content types and list definitions from the old VS 2010 project into a new VS 2012 project for SharePoint 2013. Looks like pretty simple task but ….. The problem:  Error “ A duplicate field name "xxxx" was found ” when the feature for provisioning the fields and content types is activated. The solution: Review the field definitions and make sure no field has Name property equal to some of the ‘reserved’ values. Explanations: In SharePoint 2010 there was no problem to have these fields as a definition of custom fields: < Field     Type = " Note "     ID = " {893FB9BC-2DA4-4451-A1D1-88010CDC6A08} "     Name = " Description "     StaticName = " Description "     DisplayName = " Description 1 "     Required = " FALSE "     MaxL

Using SharePoint Attachments' controls with elevated security

The scenario:  Create custom forms for Add/Edit/Delete items to a list which is not accessible by the regular users. The forms should support working with attachments. The problem: The default SharePoint controls don’t work if the current user doesn’t have access to the list items. The solution: Use custom code for generating the SharePoint default HTML so the out-of-the-box javascript works correct. Explanations:  The scenario occurs when some list need to be hidden form the users. The list has broken security inheritance and users can't navigate directly to it. Working with its fields requires crating web warts or application pages with appropriate controls on them and server-side code running under elevated privileges. The issue here is that the OOTB (out-of-the-box) controls for Attachments don't work if the user doesn’t have access to the related list item. The OOTB controls are: AttachmentsField , AttachmentUpload , AttachmentButton . There is a lot of code