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>