SharePoint 2013: Hide/Show Delete Icon In Ribbon On List Item Selection

Introduction

In the previous article we explored  how to handle the delete icon on list item selection Enable/Disable.

In this article I will explore how to handle the delete icon in list item selection (hide/ show) based on the logged in user using CSOM/REST API and jQuery.

Scenario

The scenario is to disable the delete icon in the ribbon on the List item selection. But when any user logs into the SharePoint site the items created by him should have the delete option on them when only one selection is there. This can be performed using custom Permission Level with Delete permission removed and item-level or folder-level permissions, but this can cause you a lot of problems managing the broken inheritance of permissions. Or you could write an event handler to prevent deletion of that item but the best way to do it isby using jQuery/ CSOM/ REST.

I have offered a code demo about how to Hide delete icon in ribbon on List Item Selection.

Before

Hide delete icon

Solution

Here are the steps,

Step 1: Navigate to your SharePoint 2013 site.

Step 2: From this page select the Site Actions | Edit Page.

Edit the page, go to the "Insert" tab in the Ribbon and click the "Web Part" option. In the "Web Parts" picker area, go to the "Media and Content" category, select the "Script Editor" Web Part and press the "Add button".

Step 3: Once the Web Part is inserted into the page, you will see an "EDIT SNIPPET" link; click it. You can insert the HTML and/or JavaScript as in the following:

EDIT SNIPPET

  1. // JavaScript source code  
  2. < scripttype = "text/javascript"  
  3.     src = "http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.9.1.min.js" >   
  4. < /script>   
  5. < scripttype = "text/javascript" >   
  6.   
  7. $(document).ready(function()  
  8. {  
  9.     ExecuteOrDelayUntilScriptLoaded(init_HideButton, "sp.ribbon.js");  
  10. });  
  11.   
  12. function init_HideButton()  
  13. {  
  14.     setInterval(function()  
  15.     {  
  16.         HideDeleteIconRibbomButton();  
  17.     }, 1000);  
  18. }  
  19.   
  20. function HideDeleteIconRibbomButton()  
  21. {  
  22.     $('a[id*="Ribbon.ListItem.Manage.Delete-Medium"]').hide(); //Delete Icon Hyper link  
  23.     var cc = new SP.ClientContext.get_current();  
  24.     var web = cc.get_web();  
  25.     var listId = SP.ListOperation.Selection.getSelectedList();  
  26.     var selectedItems = SP.ListOperation.Selection.getSelectedItems();  
  27.     if (selectedItems.length == 1)  
  28.     {  
  29.         var flag = CheckCreatedAuthor(listId, selectedItems[0].id, _spPageContextInfo.userId);  
  30.         if (flag) $('a[id*="Ribbon.ListItem.Manage.Delete-Medium"]').show(); //Delete Icon Hyper link  
  31.     }  
  32.     else  
  33.     {  
  34.         $('a[id*="Ribbon.ListItem.Manage.Delete-Medium"]').hide();  
  35.     }  
  36. }  
  37. functionCheckCreatedAuthor(ListId, ItemID, AuthorID)  
  38. {  
  39.     var result = false;  
  40.     var url = _spPageContextInfo.webAbsoluteUrl + "/_api/web/lists/getbyid('" + ListId + "')/items?$filter=((ID eq '" + ItemID + "') and (ApprovalStatus eq 'Draft') and (Author/ID eq '" + AuthorID + "'))";  
  41.     getListItems(url, function(data)  
  42.     {  
  43.         var items = data.d.results;  
  44.         if (items.length > 0)  
  45.         {  
  46.             result = true  
  47.         }  
  48.         else  
  49.         {  
  50.             result = false;  
  51.         }  
  52.     }, function(data)  
  53.     {  
  54.         result = false;  
  55.     });  
  56.     return result;  
  57. }  
  58.   
  59. function getListItems(siteurl, success, failure)  
  60. {  
  61.     $.ajax(  
  62.     {  
  63.         async: false,  
  64.         url: siteurl,  
  65.         method: "GET",  
  66.         headers:  
  67.         {  
  68.             "Accept""application/json; odata=verbose"  
  69.         },  
  70.         success: function(data)  
  71.         {  
  72.             success(data);  
  73.         },  
  74.         error: function(data)  
  75.         {  
  76.             failure(data);  
  77.         }  
  78.     });  
  79. } < /script>  
  • Without any list item selection to hide delete icon in ribbon on List:

    list item

  • With Multi list item selection to hide delete icon in ribbon on List:

    New item

  • With Single list item Selection (Logged in) to show delete icon in ribbon on List.

    delete item

Summary

I have tried to Hide/Show delete icon in ribbon on List Item Selection, which will provide you a greater flexibility in user interaction on the application. I have achieved this using CSOM/REST API and jQuery in SharePoint 2013. I hope this article is helpful to you and I expect you to revert back to it in case of any queries.

Read more articles on SharePoint:

Up Next
    Ebook Download
    View all
    Learn
    View all