This is a migrated thread and some comments may be shown as answers.

Context menu issue in editor

3 Answers 74 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Ivan
Top achievements
Rank 1
Ivan asked on 21 Nov 2019, 05:09 PM

We use RadEditor in Lightweight render mode on a ASP.NET page. The page uses a master page template with a search form.
As result we have two form tags on the page. The search form is located first, main form - second.

In this case we have an issue with RadContextMenu. It does not appear when you right-click on a table or a link. If we remove the search form the context menu is visible.

We tested this scenario with 2019.2.514.45 version of dlls.

Could you assist how I can get the context menu to work?

3 Answers, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 22 Nov 2019, 01:00 AM

Hi Ivan,

Can you please set UseRadContextMenu="false" and retest the scenario?

Another option is to disable the context menu and use the browser's one:

<telerik:RadEditor RenderMode="Lightweight" runat="server" ID="RadEditor1" OnClientLoad="OnClientLoad">
</telerik:RadEditor>

<script>
    function OnClientLoad(editor, args) {
        var toolAdapter = editor.get_toolAdapter();
        toolAdapter.enableContextMenus(false);
    }
</script>

Regards,
Rumen
Progress Telerik

Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
0
Ivan
Top achievements
Rank 1
answered on 22 Nov 2019, 10:36 PM

Thanks Rumen. We get the older context menu when set UseRadContextMenu to false. Is it possible to use RadContextMenu with this scenario?

Regards,
Ivan

0
Rumen
Telerik team
answered on 27 Nov 2019, 12:14 PM

Hi Ivan,

The problem was recognized as a bug and an enhancement will be added to fix this behavior for the R1 2020 release due in mid-January.

I logged the issue in the feedback portal here and also updated your Telerik points for it.

 

Best Regards,


Rumen
Progress Telerik

Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Tags
Editor
Asked by
Ivan
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Ivan
Top achievements
Rank 1
Share this question
or