Completed
Last Updated: 13 Dec 2021 11:51 by ADMIN
Release R1 2021

The paragraphs in the table are inheriting the negative indent from the previous paragraph.

Workaround: Manually remove the negative indent from the table paragraphs after the table is added.

The workaround in code:

private void RadRichTextEditor1_CommandExecuted(object sender, Telerik.WinForms.Documents.RichTextBoxCommands.CommandExecutedEventArgs e)
{
    if (e.Command is InsertTableCommand)
    {
        var table = radRichTextEditor1.Document.CaretPosition.GetCurrentTable();
       
        table.TableIndent = 0;  
        
        if (table != null)
        {
            foreach (var row in table.Rows)
            {
                foreach (var cell in row.Cells)
                {
                    foreach (var block in cell.Blocks)
                    {
                        var paragrpah = block as Paragraph;
                        if (paragrpah != null && paragrpah.LeftIndent < 0)
                        {
                            paragrpah.LeftIndent = 0;
                            paragrpah.HangingIndent = 0;
                        }
                    }
                }
            }
        }
        radRichTextEditor1.RichTextBoxElement.Document.UpdateLayout();
    }
}



 

Completed
Last Updated: 20 Oct 2014 14:35 by Kishore
Created by: Kishore
Comments: 0
Category: RichTextEditor
Type: Bug Report
0
Can't see undo and redo button on the editor.
Completed
Last Updated: 20 Oct 2014 14:34 by Kishore
Steps:
1) Launch the RichTextEditor
2) Clear the existing contents or open a new file (using File-> New)
3) Insert a table of any dimensions for ex: 2x2
4) Delete the above added table
5) Now try to insert a new table of any dimensions (For ex: 2x2)
6) You will get the following exception when you run the project using vs2010
Index was out of range. Must be non-negative and less than the size of the collection.
Parameter name: index
7) In the demo application , you will see a Form1 error pop up opens up and makes the RichTextEditor completely blank
Completed
Last Updated: 23 Feb 2021 10:36 by ADMIN
Release R1 2021 SP2
At the moment the table handles the mouse even if the header/footer is not edited.
Completed
Last Updated: 20 Oct 2014 14:34 by Kishore
Steps:
1) Launch The RichTextEditor
2) Clear all the existing content
3) Type some text for ex: zzzz
4) Select the whole text and try to hit the backspace 
5) The typed text is not cleared and even you keep hitting the backspace the text is not cleared sometimes, it just stays
Completed
Last Updated: 11 Dec 2015 13:47 by ADMIN
To reproduce, add a theme in design time and open the ThemeName drop down from the editor's SmartTag
Completed
Last Updated: 04 Jun 2021 09:38 by ADMIN
Release R2 2021 SP1 (LIB 2021.2.607)
Created by: Oksana
Comments: 1
Category: RichTextEditor
Type: Bug Report
0

Hi Team, 

We found an issue in Spell Check Feature in  RichTextEditor, the Spell Checking Dialog auto-correct the spelling issues on scroll without clicking on the "Change" button.

We are able to reproduce this in the Demo application. please have a look at the below screencast.

https://www.screencast.com/t/EieqvrvSiSq

Thank you.

Completed
Last Updated: 18 Feb 2022 15:16 by ADMIN
Release R1 2022 SP1
XamlFormat provider cannot import files created with NET Framework 
Completed
Last Updated: 22 Mar 2022 13:50 by ADMIN
Release R2 2022 (LIB 2022.1.322)

RadRichTextEditor: The paste options popup stays visible when the control is hidden

 

Workaround:

((MiniToolBarBase)this.radRichTextEditor1.RichTextBoxElement.PasteOptionsPopup).Hide();

 

Completed
Last Updated: 28 Mar 2022 16:19 by ADMIN
Release R2 2022 (LIB 2022.1.329)
The scrollbars flicker with a particular size of the form. After some time an exception is thrown as well.
Completed
Last Updated: 23 Sep 2022 13:07 by ADMIN
Release R3 2022
The text wrapping options are disabled when selecting the second image in the document. 
Completed
Last Updated: 08 Aug 2022 10:24 by ADMIN
Release R3 2022 (LIB 2022.2.808)
When the definition of font-weight contains a CSS variable as a value for the property, NullReferenceException is thrown while importing the content.
Completed
Last Updated: 23 Sep 2022 13:07 by ADMIN
Release R3 2022

The ChangeFontStyle method does not work when setting Underline: 

 

radRichTextEditor1.ChangeFontStyle( FontStyle.Underline);

 

Workaround:

radRichTextEditor1.ToggleUnderline();

Completed
Last Updated: 23 Sep 2022 13:07 by ADMIN
Release R3 2022
There is a lag when the page contains an image as a background and the user types.
Completed
Last Updated: 09 May 2016 09:02 by Svetlin
Invisible borders in html format are imported as black borders in RadRichTextBox

Resolution: 
This issue is addressed in the new version of the control - RadRichTextEditor. Please use the new control instead the RadRichTextBox. 
Completed
Last Updated: 02 Feb 2023 09:35 by ADMIN
Release R1 2023

To reproduce:

this.radRichTextEditor1.Text = null;

Completed
Last Updated: 02 Feb 2023 09:35 by ADMIN
Release R1 2023
When importing RTF the with specific font the FontSubstituting event is not fired.
Completed
Last Updated: 17 Aug 2018 08:45 by Dimitar
To reproduce:
1. Open the following article: https://aajtak.intoday.in/gallery/indonesian-tsunami-warning-earthquake-lombok-island-dead-body-1-24549.html
2. Copy its title
3. Paste in Notepad/Notepad++
4. Copy from notepad
5. Paste in RTE
Completed
Last Updated: 23 May 2019 13:19 by ADMIN
Release R2 2019 SP1 (LIB 2019.2.527)
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: RichTextEditor
Type: Bug Report
0
To reproduce: run the Demo application >> RichTextEditor >> First Look example and follow the steps illustrated in the attached gif file. 

1. First add a footnote in the text
2. Than select a part of the footnote text or all text and use the context menu to cut the text
3. Then,  paste the text in the document, it doesn't matter were.
4. Next step is to remove the footnote reference.
5.Then, scroll through the document and press the right mouse button to open the context menu.

The object release should have been called and the context menu is disposed. If so the error occurs.

Workaround:

this.radRichTextEditor1.MouseClick += radRichTextEditor1_MouseClick;

        private void radRichTextEditor1_MouseClick(object sender, MouseEventArgs e)
        {
            if (e.Button == System.Windows.Forms.MouseButtons.Right)
            {
                if (this.radRichTextEditor1.RichTextBoxElement.ContextMenu != null)
                {
                    FieldInfo fi = typeof(Telerik.WinControls.RichTextEditor.UI.ContextMenu).GetField("radDropDownMenu", BindingFlags.Instance | BindingFlags.NonPublic);
                    RadDropDownMenu dropdown = fi.GetValue(this.radRichTextEditor1.RichTextBoxElement.ContextMenu) as RadDropDownMenu;
                    if (dropdown.IsDisposed)
                    {
                        this.radRichTextEditor1.RichTextBoxElement.ContextMenu = new Telerik.WinControls.RichTextEditor.UI.ContextMenu();
                    }
                }
            }
        }
Completed
Last Updated: 01 Jun 2018 15:43 by Dimitar
Workaround: If possible set the layout mode to FlowNoWrap
this.radRichTextEditor1.Document.LayoutMode = Telerik.WinForms.Documents.Model.DocumentLayoutMode.FlowNoWrap;