Won't Fix
Last Updated: 29 Jan 2016 06:41 by ADMIN
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.
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.
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.
Won't Fix
Last Updated: 22 Jan 2016 08:02 by ADMIN
ADMIN
Created by: Todor
Comments: 1
Category: RichTextBox
Type: Bug Report
0

			
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.
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.
Unplanned
Last Updated: 31 Oct 2018 08:11 by Sistema PRI
The calculation of the left and hanging indent is incorrect for paragraph in list when the left and hanging indents are with the same value.
Unplanned
Last Updated: 31 Oct 2018 08:11 by ADMIN


The exception can be observed when printing document containing images with unsupported formats, or images with empty source (RawData = "").

The exception is with the following call stack:

   at Telerik.Windows.Documents.UI.HeaderFooterContainer.UpdateUI(SectionLayoutBox sectionBox, Boolean delayed)
   at Telerik.Windows.Documents.UI.HeaderFooterContainer.UpdateUI(SectionLayoutBox sectionBox)
   at Telerik.Windows.Documents.UI.DocumentPrintPresenter.MeasureOverride(Size availableSize)
   at System.Windows.FrameworkElement.MeasureOverride(IntPtr nativeTarget, Single inWidth, Single inHeight, Single& outWidth, Single& outHeight)


Workarounds:

If you click on print preview and print the document from the preview it is working;
     2. Use the following code

        this.radRichTextBox .PrintStarted += Rtb_PrintStarted;

        private void Rtb_PrintStarted(object sender, EventArgs e)
        {
            RadRichTextBox rtb = (RadRichTextBox)sender;
            foreach (var floatingImage in rtb.Document.EnumerateChildrenOfType<FloatingImageBlock>()
                                                      .Where(fi => !this.IsSupportedImageFormat(fi.ImageInline.Extension))
                                                      .ToList())
            {
                floatingImage.Parent.Children.Remove(floatingImage);
            }

            foreach (var inlineImage in rtb.Document.EnumerateChildrenOfType<ImageInline>()
                                                    .Where(i => !this.IsSupportedImageFormat(i.Extension))
                                                    .ToList())
            {
                inlineImage.Parent.Children.Remove(inlineImage);
            }
        }

        private bool IsSupportedImageFormat(string format)
        {
            return (format == "jpg") ||
                   (format == "jpeg") ||
                   (format == "png") ||
                   (format == "bmp");
        }   

Completed
Last Updated: 01 Jul 2015 08:13 by ADMIN
Created by: Vennila
Comments: 1
Category: RichTextBox
Type: Bug Report
0
I am using a HtmlFormatProvider control to display html memo. But there is an issue that this control will display nothing if the wrong color number in html. Ex, if you set html like below, the control display empty. it should ignore the error and display rest of message. Thanks
previewControl.htmlDataProvider.Html = "<table >\r\n<tbody>\r\n<tr>\r\n<td align=\"left\" valign=\"middle\" height=\"30px\" bgcolor=\"#cccccc\" style=\"height:30px;font-size:12px;padding-left:3px;bgcolor=#cccccc;font-weight:bold;color:#00001;border-bottom:1px solid #000001;\">\r\nItem number</td>\r\n</tr>\r\n</tbody>\r\n</table>" 
Declined
Last Updated: 29 Dec 2016 14:23 by ADMIN
Unplanned
Last Updated: 31 Oct 2018 08:14 by ADMIN
The textblocks in PageSetup dropdowns in PageLayout tab have black foreground, when Expression_Dark theme is applied. The foreground color should be white.
Unplanned
Last Updated: 31 Oct 2018 08:14 by ADMIN
When a hyperlink is copy/pasted from MS Word to RadRichTextBox, only the display name is pasted and the hyperlink is lost.
Unplanned
Last Updated: 31 Oct 2018 08:14 by ADMIN
ADMIN
Created by: Tanya
Comments: 0
Category: RichTextBox
Type: Bug Report
0
When the user opens a dialog in RadRichTextBox, after closing this dialog, the focus is lost.
Unplanned
Last Updated: 05 Apr 2017 14:38 by ADMIN
Steps to reproduce.
1. Open the ManageStylesDialog dialog.
2. Hover the Normal style item.
3. Scroll the dialog using mouse wheel. - An UnhandledException in Silverlight will be throw
Won't Fix
Last Updated: 12 Jan 2016 15:11 by ADMIN
Unplanned
Last Updated: 15 Mar 2018 15:06 by ADMIN
When importing an html file and the color of the text is marked as windowtext, the text is transparent.