Completed
Last Updated: 24 Jan 2019 15:57 by ADMIN
Unplanned
Last Updated: 24 Aug 2018 12:44 by ADMIN
RichTextEditor interprets the div tag by adding a new line upon its closing. However, when the content of the div tag is a br tag, the whole combination should be treated as one new line.
Unplanned
Last Updated: 24 Aug 2018 12:44 by ADMIN
'Decrement paragraph left indent' command can set negative left indent which makes bullets/numbering of a list clipped. Instead, it shouldn't be executed if the bullets/numbering would become invisible.

 
Unplanned
Last Updated: 04 Oct 2016 08:06 by ADMIN
To reproduce:
- Change the font of the new document:
txtCustomerInstallation.Document = new RadDocument();
txtCustomerInstallation.RichTextBoxElement.ChangeFontFamily(new Telerik.WinControls.RichTextEditor.UI.FontFamily("Calibri"));
txtCustomerInstallation.RichTextBoxElement.ChangeFontSize(Unit.PointToDip(10));
txtCustomerInstallation.RichTextBoxElement.ChangeParagraphSpacingAfter(0.0);

txtCustomerInstallation.DocumentInheritsDefaultStyleSettings = true;

- Start and paste plain text.
- The font os changed to Verdana. 


Workaround:
void radRichTextEditor1_CommandExecuting(object sender, CommandExecutingEventArgs e)
{
    if (e.Command is PasteCommand)
    {
        e.Cancel = true;
        PasteNewText();
    }
}

public void PasteNewText()
{
    DocumentFragment clipboardDocument = null;
    string clipboardText = null;
    bool clipboardContainsData = false;

    if (ClipboardEx.ContainsDocument(null))
    {
        clipboardDocument = ClipboardEx.GetDocument();
        clipboardContainsData = true;
    }
    else if (ClipboardEx.ContainsText(null))
    {
        clipboardText = ClipboardEx.GetText(null);
        clipboardContainsData = true;
    }

    if (!clipboardContainsData)
    {
        return;
    }

    if (clipboardDocument != null)
    {
        RadDocument doc = new RadDocument();
        RadDocumentEditor editor = new RadDocumentEditor(doc);
        editor.InsertFragment(clipboardDocument);
        doc.Selection.SelectAll();

        editor.ChangeFontFamily(new Telerik.WinControls.RichTextEditor.UI.FontFamily("Calibri"));
        DocumentFragment fragmentFromSelection = doc.Selection.CopySelectedDocumentElements();
        this.radRichTextEditor1.RichTextBoxElement.ActiveDocumentEditor.InsertFragment(fragmentFromSelection);
    }
    else if (!string.IsNullOrEmpty(clipboardText))
    {
        this.radRichTextEditor1.RichTextBoxElement.ActiveDocumentEditor.Insert(clipboardText);
    }
}

Completed
Last Updated: 14 Apr 2016 14:33 by ADMIN
The control renders the list without the indenting that IE and Firefox do.
In addition it renders it with to much line spacing. Code to use:


<ol>
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ol>
Completed
Last Updated: 19 Jun 2015 06:01 by Jesse Dyck
RtfFormatProvider of RadRichTextBox does not recognize zeros at the end of the tags. This leads to incorrect render of tags. 
For example:
tag - \highlight0 is render as highlight with font color instead with transparent highlight color.
tag - \b0 is render as a bold text.
tag - \i0 is render as italic text.
and etc.
Completed
Last Updated: 18 Feb 2015 16:44 by ADMIN
ADMIN
Created by: Georgi I. Georgiev
Comments: 0
Category:
Type: Bug Report
2
To reproduce use this code:
Section section = new Section();
Table table = new Table();
section.Blocks.Add(table);
TableRow row = new TableRow();
TableCell cell = new TableCell();
Paragraph p = new Paragraph();
Span sp = new Span();
sp.Text = "Benefit Start";
sp.UnderlineType = Telerik.WinControls.RichTextBox.UI.UnderlineType.Line;
p.Inlines.Add(sp);
row.Cells.Add(cell);
cell.Blocks.Add(p);
table.Rows.Add(row);
this.radRichTextBox1.Document.Sections.Add(section);

You will see that the text's underlining is wider than it should be.

Resolution: 
This issue is addressed in the new version of the control - RadRichTextEditor. Please use the new control instead the RadRichTextBox. 
Completed
Last Updated: 22 Jan 2015 09:57 by ADMIN
To reproduce:

Type something in a RadRichTextBox. Press enter, change the text alignment by using the ChangeTextAlignment method to Center. Continue typing and you will see that the second line is centered relative to the first row. The principle for the other alignment values is the same.

Resolution: 
This issue is addressed in the new version of the control - RadRichTextEditor. Please use the new control instead the RadRichTextBox.
Completed
Last Updated: 28 Nov 2014 11:01 by Jesse Dyck
FIX. RadRichTextBox - exporting html content from the control to PDF causes parts of the cells content to be drawn outside the cells

Resolution: 
This issue is addressed in the new version of the control - RadRichTextEditor. Please use the new control instead the RadRichTextBox. 
Completed
Last Updated: 28 Nov 2014 06:23 by ADMIN
You will notice that when IsSpellCheckingEnabled property is set to true the scrolling is not smooth. 

Resolution: 
This issue is addressed in the new version of the control - RadRichTextEditor. Please use the new control instead the RadRichTextBox. 
Completed
Last Updated: 28 Nov 2014 06:06 by ADMIN
To reproduce: 
- add a RadRichTextBox and use the following code

            RadDocument document = null;
            HtmlFormatProvider  provider = new HtmlFormatProvider ();
            OpenFileDialog openDialog = new OpenFileDialog();
            openDialog.Filter = "Documents|*.html";
            openDialog.Multiselect = false;
            DialogResult dialogResult = openDialog.ShowDialog();
            if (dialogResult == System.Windows.Forms.DialogResult.OK)
            {
                using (FileStream stream = new FileStream(openDialog.FileName, FileMode.Open))
                {
                    document = provider.Import(stream);
                }
            }
            this.radRichTextBox1.Document = document;

Note: in the html file use the following way of commenting the style tag:

<style>
<!--
some style content
-->
</style>

Workaround: use the following way of commenting the content:
<!--<style>
some style content
</style>-->


Resolution: 
This issue is addressed in the new version of the control - RadRichTextEditor. Please use the new control instead the RadRichTextBox. 
Completed
Last Updated: 28 Nov 2014 06:05 by ADMIN
FIX. RadRichTextBox - should be able to insert a text to the end of a document, which is not assigned to the control

Resolution: 
This issue is addressed in the new version of the control - RadRichTextEditor. Please use the new control instead the RadRichTextBox. 
Completed
Last Updated: 28 Nov 2014 05:59 by ADMIN
RadRichTextBox - Undo command does not work if you insert text through Insert method.
Code to reproduce: 
radRichTextBox1.Document.Insert("Inserted text", radRichTextBox1.CurrentEditingStyle);

 Work around: 
1.Insert text char by char through InputBehavior.ProcessKeyPress method: 

string text = "Inserted text"; 
foreach (char ch in text)

 { radRichTextBox1.RichTextBoxElementrElement.DocumentView.InputBehavior.ProcessKeyPress(new KeyPressEventArgs(ch)); 
}


Resolution:  

This issue is addressed in the new version of the control - RadRichTextEditor. Please use the new control instead the RadRichTextBox. 

When call Document.Insert method, still can not undo. To execute commands in an undo scope either use:

this.radRichTextEditor1.Commands.InsertTextCommand.Execute("some text", false);
Completed
Last Updated: 28 Nov 2014 05:56 by ADMIN
selecting a few lines and choosing the bullet or numbering option. The selected area is having graphical isssues

Resolution: 
This issue is addressed in the new version of the control - RadRichTextEditor. Please use the new control instead the RadRichTextBox. 
Completed
Last Updated: 28 Nov 2014 05:53 by ADMIN
To reproduce: 
public class SwedishDictionary : WordDictionary
{
      protected override void EnsureDictionaryLoadedOverride()
     {
           using (MemoryStream ms = new MemoryStream(Properties.Resources.sv_SE))
          {
                this.Load(ms);
          }
    }
}

Workaround - call the method in the constructor: 

public class SwedishDictionary : WordDictionary
{
      public SwedishDictionary()
      {
            this.EnsureDictionaryLoaded();
      }
 
      protected override void EnsureDictionaryLoadedOverride()
     {
           using (MemoryStream ms = new MemoryStream(Properties.Resources.sv_SE))
          {
                this.Load(ms);
          }
    }
}

Resolution: 
This issue is addressed in the new version of the control - RadRichTextEditor. Please use the new control instead the RadRichTextBox. 
Completed
Last Updated: 28 Nov 2014 05:52 by ADMIN
ADMIN
Created by: Dimitar
Comments: 0
Category:
Type: Bug Report
0
To reproduce:
- Add RadRichTextBox and a button to a blank form.
- Add some text with couple of new lines in the middle of it. 
- Create a context menu with a copy command in it and assign it to the richtextbox.
- Select some of the text and copy it via the context menu item then just click the button.
- You will notice that this is causing wrong layout of the text.

Resolution: 
This issue is addressed in the new version of the control - RadRichTextEditor. Please use the new control instead the RadRichTextBox. 
Completed
Last Updated: 28 Nov 2014 05:50 by ADMIN
1. Create a project with RadRichTextBox.
2. Type in a word document some text using Times New Roman font.
3. Run your project and paste the word text.
4. Observe that the font is not preserved.

Resolution: 
This issue is addressed in the new version of the control - RadRichTextEditor. Please use the new control instead the RadRichTextBox. 
Completed
Last Updated: 28 Nov 2014 05:47 by Svetlin
If you insert image by using the InsertImage method of RadRichTextBox, it will be painted as cropped image. If you copy a large image and paste it in the RadRichTextBox, the image will be cropped as well and no horizontal scrollbar will be shown.

Resolution: 
This issue is addressed in the new version of the control - RadRichTextEditor. Please use the new control instead the RadRichTextBox. 
Completed
Last Updated: 27 Nov 2014 16:53 by Jesse Dyck
When you type a Chinese simplified character in RadRichTextBox, the symbol appears twice.
Completed
Last Updated: 26 Nov 2014 07:40 by Svetlin
The CurrentEditingStyleChanged event is fired periodically when the caret is blinking in RadRichTextBox.

Resolution: 
This issue is addressed in the new version of the control - RadRichTextEditor. Please use the new control instead the RadRichTextBox. 
1 2 3 4 5 6