Your search did not match any results.

Rich Edit - Context Menu

The contextMenu property allows you to customize the DevExpress ASP.NET Core Rich Text Editor's context menu. You can handle the contextMenuShowing event to additionally modify the menu before it is displayed.

In this demo, the contextMenu.items collection is customized on the Init event. The ContextMenuShowing event is handled to modify the collection based on the current selection.

Click on a custom menu item raises the CustomCommandExecuted event. The event handler identifies the clicked item by its name (the e.commandName property) and processes the item click (search the selected text in Google).

Backend API