Unplanned
Last Updated: 10 May 2022 16:02 by Fabrizio

To reproduce:

  1. Insert content spanning 3 pages
  2. Ensure a single page is visualized in the viewport 
  3. Start selecting from the beginning of the content till the end by dragging the mouse
  4. Press Delete

The issue is a regression introduced in R3 2021 SP1.

Unplanned
Last Updated: 13 May 2022 13:09 by ADMIN
RichTextBox: Exporting hyperlinks that include symbols such as a Section sign (ยง) to a PDF file breaks the link
Unplanned
Last Updated: 17 Jan 2023 07:49 by ADMIN
The issue is hard to reproduce as it seems to depend on a specific combination between a resolution and text scaling.
Unplanned
Last Updated: 24 May 2022 12:29 by Caesar

When importing a XAML document that contains a Content control with PrefixMappings to its TextProperties` DataBinding an exception is thrown: 'Telerik.Windows.Documents.Model.StructuredDocumentTags.DataBinding.PrefixMappings' threw an exception.'

Unplanned
Last Updated: 25 May 2022 09:28 by Caesar
Currently, the uncommitted text is always underlined with a dotted line. Provide an option for disabling that behavior.
Unplanned
Last Updated: 26 May 2022 09:52 by Caesar
When committing the text, the automatic underline should be removed from the content. However, it is preserved for all spans inserted with the IME.
Completed
Last Updated: 16 Dec 2021 15:47 by ADMIN
Release LIB 2021.3.1220 (20 Dec 2021)

The issue is observed when the added table is preceded by a paragraph with a font size different from the default one. As the issue is caused by a broken mouse capture, the following workaround can be employed:

someRandomFrameworkElement.CaptureMouse();

someRandomFrameworkElement.ReleaseMouseCapture();

Completed
Last Updated: 17 Dec 2021 14:01 by ADMIN
Release LIB 2021.3.1220 (20 Dec 2021)
Spans containing complex script text are styled using the iCs and bCs elements for font style and font-weight. DocxFormatProvider currently doesn't export them, leading to incorrect styling when the document is opened in MS Word.
Completed
Last Updated: 16 Dec 2021 14:38 by ADMIN
Release LIB 2021.3.1220 (20 Dec 2021)

When a whole paragraph is selected and the Set Numbering Value command is executed, the numbering value of the next paragraph is changed instead of the current one.

Workaround: Clear the selection prior to executing the command:
private void radRichTextBox_CommandExecuting(object sender, CommandExecutingEventArgs e)
{
    if (e.Command is ShowSetNumberingValueDialogCommand)
    {
        this.radRichTextBox.Document.CaretPosition.MoveToPosition(this.radRichTextBox.Document.Selection.Ranges.First.StartPosition);
    }
}

Declined
Last Updated: 08 Feb 2022 13:00 by ADMIN

Using the microsoft word,In docx document,inserting a shape,and add the text context to the shape,then save.

when radrichtextbox  open the file,the program crashed.

Unplanned
Last Updated: 30 Sep 2021 11:07 by ADMIN

Exception when importing a document with an empty table.

Workaround: Remove the empty tables:

DocxFormatProvider provider = new DocxFormatProvider();
var doc = provider.Import(File.ReadAllBytes(@"C:\Users\mpc\Downloads\22-51.docx"));

foreach (var section in doc.Sections)
{
    var tables = section.EnumerateChildrenOfType<Table>();
    foreach (var table in tables.ToList())
    {
        if (table.Rows.Count == 0)
        {
            section.Blocks.Remove(table);
        }
    }
}
radRichTextBox.Document = doc;

Completed
Last Updated: 12 Oct 2021 14:31 by ADMIN
Release R3 2021 SP1
The exception is thrown while trying to measure a cell that has a floating image in it and should be transferred to the next page as the space available on the current one is not enough to be rendered.
Completed
Last Updated: 05 Jul 2022 14:33 by ADMIN
Release LIB 2022.2.711 (11 Jul 2022)
  1. In MS Word, create a table with text in every cell, but just before the table, add a paragraph with text (you cannot reproduce the problem with an empty paragraph)
  2. In the RadRichTextBox, create a new document
  3. Activate Review/Track Changes
  4. Copy and paste all the content from MS Word >> as a result none of the cells in the table has change tracking markup
  5. If you copy only the table from MS Word (without the non-empty paragraph), it is working as expected
Unplanned
Last Updated: 27 Jul 2021 08:17 by ADMIN
Rtf document with document variable that contains path cannot be parsed by the RtfFormatProvider 
Completed
Last Updated: 15 May 2023 09:28 by ADMIN
Release R3 2021
When exporting shapes with a style that doesn't define dash pattern an ArgumentException is thrown.
Completed
Last Updated: 07 Feb 2022 13:57 by ADMIN
Release LIB 2022.2.207 (02 Feb 2022)
Inserting symbols using the windows emoji keyboard (WindowsKey + .) in RadRichTextBox results in two duplicate characters.
Unplanned
Last Updated: 14 Jan 2022 07:33 by ADMIN
A complex table with merged cells cannot be imported. The table contains rows with no cells because of the merge.
Completed
Last Updated: 24 Nov 2021 14:23 by ADMIN
Release LIB 2021.3.1129 (29 Nov 2021)
The mail merge does not work with fields inside shapes' text
Unplanned
Last Updated: 27 Oct 2021 12:46 by ADMIN

Having two mention providers and using the second right after using the first one actually loads the source of the first provider.

Completed
Last Updated: 08 Dec 2021 10:56 by ADMIN
Release LIB 2021.3.1213 (13 Dec 2021)
RichTextBox: Expose a way so one can access the text of the shape via the public API.