Unplanned
Last Updated: 19 Nov 2019 09:05 by ADMIN
1. Open RadRichTextBox
2. Click to Home tab -> Paragraph group-> Multilevel list button
4. Click to "Define New List Style"
5. In "Apply formatting to" select 4th level. Don't select '1','2','3' beforehand, select '4' right after '1'st level.

Observed result: All text except the 4th level is bold.

Expected result: Only 4th level text is bold.
Unplanned
Last Updated: 18 Nov 2019 06:36 by ADMIN
It should be located on a new line. Instead, it is located on the same line where the text is.
Unplanned
Last Updated: 30 Oct 2019 09:25 by ADMIN
While importing definition of a font similar to font:400 15px 'arial'; where the font-weight is defined as a number, this number is parsed as value for font size instead of mapping it to font-weight.
Unplanned
Last Updated: 23 Oct 2019 07:53 by ADMIN
HTML export of RadRichTextBox to perform font-size export in different units.

If you export a document using the HtmlFormatProvider, all style properties which contain measurement units are exported in pixel units. This makes the exported documents look much smaller when opened on devices with higher pixel density.

WORKAROUND: use Regex to find, convert and replace the font-size attributes

            HtmlFormatProvider html = new HtmlFormatProvider();
            string res = html.Export(document);
            Regex regex = new Regex(@"font-size: [0-9]*\.?[0-9]*px");
            Match match = null;

            do
            {
                match = regex.Match(res);
                if (!match.Success)
                {
                    break;
                }

                string value = match.Value.Substring("font-size: ".Length, match.Value.Length - "font-size: ".Length - "px".Length);
                double pts = double.Parse(value) * 72 / 96;
                res = res.Replace(match.Value, @"font-size: " + Math.Round(pts, 4) + "pt");
            } while (match.Success);

            File.WriteAllText("output.html", res);
Unplanned
Last Updated: 22 Oct 2019 15:30 by ADMIN
Missing bookmark annotation after cut command or move selected text which includes bookmark annotation
Unplanned
Last Updated: 14 Oct 2019 06:45 by ADMIN
Bullet and numbered lists are still displayed as toggled in the ribbon even though the user has broken the lists. The toggle is removed only when the user clicks over the document.
Unplanned
Last Updated: 07 Oct 2019 14:55 by ADMIN
When an HTML document contains a div and a span just after it, the span is imported as a child of the div. As a result, the span inherits some of the settings applied to the div.
Completed
Last Updated: 21 Oct 2019 12:01 by ADMIN
Created by: Stefan
Comments: 0
Category: RichTextBox
Type: Bug Report
0

System.Windows.Data Error: 2 : Cannot find governing FrameworkElement or FrameworkContentElement for target element. BindingExpression:(no path); DataItem=null; target element is 'SolidColorBrush' (HashCode=63604780); target property is 'Color' (type 'Color')

Completed
Last Updated: 12 Feb 2020 13:23 by ADMIN
Release LIB 2020.1.217 (02/17/2020)

When the copied document fragment is replaced during paste within a single RadDocument:

ClipboardEx.SetDocument(new DocumentFragment(doc));

Ordered list are not pasted correctly.

Workaround:

Bypass paste and use the InsertFragment API

this.radRichTextBox.InsertFragment(new DocumentFragment(doc));
e.Cancel = true;

Completed
Last Updated: 20 May 2022 07:38 by ADMIN
Release LIB 2022.2.523 (23 May 2022)

Showing a document that contains a Table object without any TableRow inside leads to NullReferenceException.

Workaround: After importing the document, remove the tables that don't have content:

foreach (var table in document.EnumerateChildrenOfType<Table>())
{
    if (table.Rows.Count < 1)
    {
        table.Parent.Children.Remove(table);
    }
}

Completed
Last Updated: 21 Jan 2020 13:34 by ADMIN
Release LIB 2020.1.127 (01/27/2020)

As suggested in the orginal support ticket 1430154 I'm opening a separate bug reprot for the RadRichTextBox.

Visual Studio 2019 solution to reproduce the problem is attached to the bug report.

Unplanned
Last Updated: 26 Sep 2019 08:25 by ADMIN
Created by: Petar
Comments: 2
Category: RichTextBox
Type: Feature Request
2
Add ability for Import/Export of custom attributes to HTML.
Unplanned
Last Updated: 18 Sep 2019 16:06 by ADMIN
Created by: Ye
Comments: 0
Category: RichTextBox
Type: Feature Request
0
An option that enables users to paste any rich text content as a picture of it.
Unplanned
Last Updated: 18 Sep 2019 12:54 by ADMIN
Having a watermark test "This is a\nWatermark" is exported with an empty box instead of a new line to PDF.
Unplanned
Last Updated: 13 Sep 2019 15:44 by ADMIN

Currently floating images specified using the VML shapes are imported as non-floating, for example:

<v:shape id="_x0000_s1026" type="#_x0000_t75" style="height:180.25pt;margin-left:62.25pt;margin-top:1.65pt;position:absolute;width:180.25pt;z-index:251658240" o:preferrelative="t">
        <v:imagedata r:id="rId4" />
</v:shape>

Unplanned
Last Updated: 19 Sep 2019 14:50 by ADMIN

Right click image > text wrapping > more layout options > text wrapping tab

Word supports "Largest Only" but RichTextBox only has both, left, and right.

Completed
Last Updated: 01 Oct 2019 12:40 by ADMIN
Release 2019.3.1007 (10/07/2019)
In this example, the current synchronization context is "occupied" by the task that sets the RTF string forcing the arrange tasks to wait for it to complete before they can start. However, it can never complete as it is blocked by the wait call for the arrange tasks that will never run, causing a deadlock. 
Completed
Last Updated: 01 Oct 2019 10:47 by ADMIN
Release 2019.3.1007 (10/07/2019)
System.InvalidOperationException: Cannot use a DependencyObject that belongs to a different thread than its parent Freezable. is thrown when multiple RadRichTextBoxes are instantiated in different STA threads. The cause seems to be a static freezable resource.
Declined
Last Updated: 12 Sep 2019 15:58 by ADMIN
Created by: Matt
Comments: 1
Category: RichTextBox
Type: Bug Report
0

When importing from a .docx the RichTextBox is adding a blank line for each continuous section break. You can see this in the attached file - in the RichTextBox there is an extra line between sections that does not exist in the source word document.

Declined
Last Updated: 13 Sep 2019 14:14 by ADMIN
Created by: Matt
Comments: 1
Category: RichTextBox
Type: Feature Request
0
MS Word has support for line numbers (see attached file) but RichTextBox ignores them. Could we get support for Words line numbering options?