Take the community feedback survey now.

Anders Hattestad
Jun 19, 2011
  6977
(1 votes)

How to change context menu in the edit mode tree view

imageIf one would like to change the right right click context menu, to add one or more options there are several different approaches one could take. One that I like is to attach myself to the PageSetup event. This event will trigger on all pages that inherit from PageBase. That includes most of the admin and edit mode pages. (if not all)

Code Snippet
  1. public static void Initialize(int bitflags)
  2. {
  3.     EPiServer.PageBase.PageSetup += new EPiServer.PageSetupEventHandler(PageBase_PageSetup);
  4. }

 

if the page is EditTree we can then try to attach to the Menu object that will provide the right context menu. That property is protected, so we have to use reflection:

Code Snippet
  1. PropertyInfo info = type.GetProperty("Menu",BindingFlags.Instance|BindingFlags.NonPublic);
  2. RightClickMenu menu = info.GetValue(sender, null) as RightClickMenu;

The whole code will look like this

Code Snippet
  1. static void sender_PreRender(object sender, EventArgs e)
  2. {
  3.     if (sender is EditTree)
  4.     {
  5.         //I'm in right context menu in edit mode
  6.         Type type = typeof(EditTree);
  7.         string str = (sender as EditTree).ResolveUrlFromUI("edit/");
  8.         string imageThemeUrl = (sender as EditTree).GetImageThemeUrl("Tools/");
  9.  
  10.         PropertyInfo info = type.GetProperty("Menu",BindingFlags.Instance|BindingFlags.NonPublic);
  11.         RightClickMenu menu = info.GetValue(sender, null) as RightClickMenu;
  12.         RightClickMenuItem item = new RightClickMenuItem("Archive",
  13.             null,
  14.             CreateMenuAction("deletepage", "/custom/AdminPages/Delete2Archive.aspx", ""), "AllowDelete()",
  15.             imageThemeUrl + "Delete.gif",
  16.             RightClickMode.All);
  17.  
  18.         menu.Add("MyItem",item);
  19.     }
  20.     else
  21.     {
  22.         //I'm in view mode
  23.         if ((sender as EPiServer.PageBase).ContextMenu != null && (sender as EPiServer.PageBase).ContextMenu.Menu != null)
  24.         {
  25.             //(sender as EPiServer.PageBase).ContextMenu.Menu.Add("MyItem", EPiServer.Security.AccessLevel.Edit, new EPiServer.RightClickMenuItem("My Script", "MyScript()", "MyScriptSubMenu"));
  26.         }
  27.     }
  28. }
  29. private static string CreateMenuAction(string action, string url, string data)
  30. {
  31.     return string.Format("OnContextMenuAction(\"{0}\", \"{1}\", \"{2}\")", action, url, data);
  32. }

In my code, I want the Archive option enabled just as the Delete option. If you want more logic when its enabled just create yourself a java script function and provide the java script name in the constructor of the RightClickMenuItem.

Jun 19, 2011

Comments

Jun 19, 2011 08:42 PM

Nice one, I have just done a similar thing with my PageTypeExtensions project but this was using a PageAdapter. I wasn't aware of the PageSetup event and that you could modify the edit/admin pages in this way :)

Aug 8, 2011 04:36 PM

Im Trying to use the example, creating my own panel page.

Do i have to inherit something special for the page Delete2Archive.aspx.
I have created a simple aspx page. It is displayed fine, but when it shows up, the tree view does not work anymore.
Im using the newpage action.

RightClickMenuItem item = new RightClickMenuItem("Archive",
null,
CreateMenuAction("newpage", "/PlugIn/CopyLanguage.aspx", ""), "true",
imageThemeUrl + "New.gif",
RightClickMode.All);


I have tried to inherit from Episerver.UI.Edit.NewPage, SystemBasePage,PageBase and System.Web.UI.Page

Could you include the Delete2Archive.aspx and the cs file also or tell me if there is something im missing.


Anders Hattestad
Anders Hattestad Aug 8, 2011 07:04 PM

her is the Delete2Archive.aspx file

http://world.episerver.com/Code/Anders-Hattestad1/How-to-change-context-menu-in-the-edit-mode-tree-view/

Please login to comment.
Latest blogs
A day in the life of an Optimizely OMVP - Introducing the beta of Opti Graph Extensions add-on

Introducing Opti Graph Extensions: Enhanced Search Management for Optimizely CMS I am excited to announce the beta release of **Opti Graph...

Graham Carr | Sep 15, 2025

Content modeling for beginners

  Introduction Learning by Doing – Optimizely Build Series  is a YouTube series where I am building  a fictional  website called  TasteTrail , food...

Ratish | Sep 14, 2025 |

A day in the life of an Optimizely OMVP - Enhancing Search Relevance with Optimizely Graph: Synonyms and Pinned Results

When building search experiences for modern digital platforms, relevance is everything. Users expect search to understand their intent, even when...

Graham Carr | Sep 14, 2025

Optimizely CMS and HTML validation message: Trailing slash on void elements has no effect and interacts badly with unquoted attribute values.

When using the W3C Markup Validation Service, some annoying information messages pop up because Optimizely CMS adds the trailing slash to...

Tomas Hensrud Gulla | Sep 14, 2025 |

Turbocharge your strings - a case of display channels

When doing a routine performance test, during a CMS 12 upgrade, I was able to achieve 95% performance improvement. Let's look at SearchValues with ...

Stefan Holm Olsen | Sep 14, 2025 |

Opal Core Concepts

Before you dive into the code, it's crucial to understand the foundational ideas that make Opal tick. Core concepts are consistent across all its...

K Khan | Sep 13, 2025