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

RadEditor not working on Firefox (68.0.1) 64bit

1 Answer 52 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Antonio
Top achievements
Rank 1
Antonio asked on 24 Jul 2019, 01:05 PM

Hello,

RadEditor controls toolbar (Bold, Italic, etc) is not working on the latest version of Firefox 68.0.1 (64-bit), i tried fixing the issue using ".onParentNodeChanged()" solution that i found on the forum but with no result.

<asp:Content runat="server" ContentPlaceHolderID="MainContent">
    <telerik:RadWindowManager ID="RadWindowManager1" runat="server" EnableShadow="True" Skin="IP" EnableEmbeddedSkins="false" VisibleTitlebar="true" VisibleStatusbar="false" AutoSize ="true">
                <Windows>
                    <telerik:RadWindow ID="rwdAddActionTaken" runat="server" Title="Add Response" Modal="true" Skin="IP" EnableEmbeddedSkins="false" 
                        VisibleTitlebar="true" ShowContentDuringLoad="false" VisibleStatusbar="false" Behaviors="Close" AutoSize="true" Width="700px" Height="550px"
                        OnClientShow="fixEditor">
                        <ContentTemplate>
                            <telerik:RadEditor RenderMode="Lightweight" runat="server" ID="RadEditor1" ContentAreaMode="Div" SkinID="DefaultSetOfTools"
                Height="675px">
                                        <Tools>
                                                    <telerik:EditorToolGroup Tag="Top">
                                                        <telerik:EditorTool Name="Bold" />
                                                        <telerik:EditorTool Name="Italic" />
                                                        <telerik:EditorTool Name="Underline" />
                                                        <telerik:EditorTool Name="StrikeThrough" />
                                                        <telerik:EditorSeparator Visible="true" />
                                                        <telerik:EditorTool Name="InsertOrderedList" />
                                                        <telerik:EditorTool Name="InsertUnorderedList" />
                                                        <telerik:EditorTool Name="Outdent" />
                                                        <telerik:EditorTool Name="Indent" />
                                                        <telerik:EditorSeparator Visible="true" />
                                                        <telerik:EditorTool Name="FontName" />
                                                        <telerik:EditorTool Name="RealFontSize" />
                                                        <telerik:EditorTool Name="ForeColor" />
                                                        <telerik:EditorTool Name="BackColor" />
                                                        <telerik:EditorSeparator Visible="true" />
                                                        <telerik:EditorTool Name="Undo"/>
                                                        <telerik:EditorTool Name="Redo" />
                                                        <telerik:EditorSeparator Visible="true" />
                                                        <telerik:EditorTool Name="Cut" />
                                                        <telerik:EditorTool Name="Copy" />
                                                        <telerik:EditorTool Name="PasteAsHtml" />
                                                        <telerik:EditorTool Name="PastePlainText" />
                                                    </telerik:EditorToolGroup>
                                                    <telerik:EditorToolGroup Tag="Middle">
                                                        <telerik:EditorTool Name="JustifyLeft" />
                                                        <telerik:EditorTool Name="JustifyCenter" />
                                                        <telerik:EditorTool Name="JustifyRight" />
                                                        <telerik:EditorSeparator Visible="true" />
                                                        <telerik:EditorTool Name="InsertLink" />
                                                    </telerik:EditorToolGroup>
                                                </Tools>                                   
                                            </telerik:RadEditor>  
                            </ContentTemplate>
                    </telerik:RadWindow>
                    </Windows>
            </telerik:RadWindowManager>
    <script type="text/javascript">
    function fixEditor()
    {
        $find("<%=RadEditor1.ClientID %>").onParentNodeChanged();
    }
</script>
</asp:Content>

1 Answer, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 24 Jul 2019, 01:16 PM

Hi Antonio,

The problem is discussed at The editor commands do not work when the editor is initially hidden in Firefox 62+ and the solution is to upgrade to a version R1 2019 or higher.

Version 2019.2.514 is suitable for upgrade. I tested it with your code and the editor commands work fine with it in FF 68.0.1.

 

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
Antonio
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Share this question
or