OnMouseOver tooltip in RadEditor

1 Answer 134 Views
Editor
Chris
Top achievements
Rank 1
Chris asked on 27 May 2021, 02:01 AM | edited on 27 May 2021, 02:02 AM

If I mouse over my radeditor it says "Rich text editor with ID ....". I've included a screen shot.

How do I stop this from showing?

Thanks.

1 Answer, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 27 May 2021, 06:58 AM

Hi Chris,

I hope you are doing well!

You can hide the tooltip with the following code:

<telerik:RadEditor ID="RadEditor1" runat="server" ContentAreaMode="Div"
    OnClientLoad="editorLoad">
</telerik:RadEditor>
<script type="text/javascript">
    function editorLoad(editor) {
        var contentAreaEl = editor.get_contentAreaElement();
        contentAreaEl.removeAttribute("title");
    }
</script>

as explained in the following KB https://www.telerik.com/support/kb/aspnet-ajax/editor/details/hiding-radeditor-tooltip-when-contentareamode-is-div

Best Regards,
Rumen
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Tags
Editor
Asked by
Chris
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Share this question
or