I have a DevExpress XAF Blazor project in which I integrated the HTML Text Editor component by Radzen. It generally works fine, but when I right click into the text field it doesn't open the context menu of the text field, it opens the "Customize Layout" context menu of XAF Blazor.
If I use a textarea element for example, both by DevExpress and just built-in HTML stuff works just fine as you would expect. You right click into the element and it displays a relevant context menu. Now, when I globally disable the Layout Customization, it does actually work as expected. This makes it seem like the RadzenHTMLEditor component somehow gives up its right to display a right click menu when DevExpress wants to show one. Changing the z-index doesn't change anything either. I could build a custom context menu which would override the priority of the Layout Customization menu, but I would like to avoid that.
Edit: The same also happens with a div that has contenteditable=true, as is used within the Radzen HTML Editor.