Completed
Last Updated: 07 Nov 2018 17:06 by ADMIN
ADMIN
Rumen
Created on: 17 Sep 2018 10:58
Category: Editor
Type: Bug Report
1
The editor commands do not work when the editor is initially hidden in Firefox 62+
If RadEditor is initially hidden with display:none, its tools do not work when displayed in Firefox 62.0:

<div style="display: none" id="hiddenWrapper">
    <telerik:RadEditor ID="RadEditor1"  runat="server"></telerik:RadEditor>
</div>
<script>
    function f() {
        $get('hiddenWrapper').style.display = "block";
      }
    Sys.Application.add_load(f);
</script>


There is a warning error in the console: "Mutation Events is deprecated and to use MutationObserver".

The fix is to call the $find("RadEditor1").onParentNodeChanged(); method to recreate the content area:

<div style="display: none" id="hiddenWrapper">
    <telerik:RadEditor ID="RadEditor1"  runat="server"></telerik:RadEditor>
</div>
<script>
    function f() {
        $get('hiddenWrapper').style.display = "block";
        $find("RadEditor1").onParentNodeChanged();
    }
    Sys.Application.add_load(f);
</script>
1 comment
ADMIN
Rumen
Posted on: 07 Nov 2018 17:06
Hi there, 

You will obtain the fix with the R1 2019 release due in mid-January. 
The warning message "Mutation Events is deprecated and to use MutationObserver" is fixed as well.