Unplanned
Last Updated: 31 Oct 2018 08:11 by ADMIN
At this point the Ctrl + Insert shortcut doesn't work, while the Shift + Insert is pasting the text in the editor, but the pasted text is not visible until you start to type. 
Completed
Last Updated: 17 Mar 2015 11:36 by Kristoffer Rødseth
The fix is available in our latest LIB release (v. 2015.1.0316).
Completed
Last Updated: 27 Oct 2015 11:27 by ADMIN
Completed
Last Updated: 03 Oct 2016 12:47 by ADMIN
A document created from RadRichTextBox containing a transparent image is successfully shown in Adobe. However, when saved from Adobe, leads to corrupt PDF and the image is missing.
Won't Fix
Last Updated: 01 Feb 2016 09:14 by ADMIN
All attributes for table cell are exported to HTML regardless of whther they are added to HtmlExportSettings.PropertiesToIgnore or not.
Declined
Last Updated: 24 Feb 2017 14:43 by ADMIN
Unplanned
Last Updated: 31 Oct 2018 07:54 by ADMIN

Workaround: When the error is reproducible with revisions, inherit the RevisionsToolTipLayer class and override ResetPooledElementProperties method
protected override void ResetPooledElementProperties(object element)
{
    if (element is Path)
    {
        Path path = (Path)element;
        path.Data = null;
        path.Fill = null;
        path.Dispatcher.BeginInvoke(()=>
        ToolTipService.SetToolTip(path, null));
    }
}


When the error is thrown when using hyperlinks, setting the format string for hyperlinks to an empty string prevents the error but will also disable the hyperlink tooltips:
this.radRichTextBox.HyperlinkToolTipFormatString = string.Empty;
Won't Fix
Last Updated: 01 Feb 2016 08:25 by ADMIN
Even if a cell is aligned to center or right, the td element in the HTML has attribute align="left". The paragraph within has the proper alignment, but this is confusing.

MS Word omits the align attribute of the cell and sets alignment on the paragraphs directly.
Completed
Last Updated: 14 Jul 2016 13:11 by ADMIN
ADMIN
Created by: Mihail
Comments: 1
Category: RichTextBox
Type: Bug Report
0
When styling the whole paragraph and exporting to HTML format the list item doesn't receive its styling. On importing the output document we can't recover the full styling of the list item.
Declined
Last Updated: 12 Jan 2015 09:28 by ADMIN
Created by: Mark
Comments: 1
Category: RichTextBox
Type: Bug Report
0
Many common words with apostrophes fail spell checking (isn't, shouldn't) while others pass (don't, can't). 

Word traversal (GetCurrentWord, etc.) breaks words apart on apostrophes.
Won't Fix
Last Updated: 29 Jan 2016 06:41 by ADMIN
Completed
Last Updated: 16 Dec 2014 09:25 by ADMIN
ADMIN
Created by: Mihail
Comments: 0
Category: RichTextBox
Type: Bug Report
0

			
Won't Fix
Last Updated: 22 Jan 2016 08:06 by ADMIN
Won't Fix
Last Updated: 22 Jan 2016 08:02 by ADMIN
ADMIN
Created by: Todor
Comments: 1
Category: RichTextBox
Type: Bug Report
0

			
Unplanned
Last Updated: 31 Oct 2018 07:54 by Chris
When color is applied to table cell border through the Table Borders -> Cell Borders, the thickness of the border is set to 0. This makes the border invisible.

Workaround: Change the border thickness manually in the dialog after the color is changed.

Steps to reproduce:
- Add table with one column
- Open from context menu Table Borders dialog
- Click on Cell Borders tab 
- Apply color -> blue
- Press OK

Expected: The table cell has blue borders applied.
Actual: The table cell has no borders.
Completed
Last Updated: 01 Feb 2016 08:58 by ADMIN
Created by: Chris
Comments: 1
Category: RichTextBox
Type: Bug Report
1
When deleting an inserted table and undo'ing the delete action, all style information is lost for all rows except the first.
Completed
Last Updated: 08 Dec 2014 08:45 by ADMIN
The fix is available in our latest official release 2014 Q3 SP1