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.
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: 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: 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: 02 May 2022 06:26 by Bohus
RichTextBox: Doesn't display a portion of the text when the FlowMode is set to Flow
Unplanned
Last Updated: 25 Apr 2022 11:52 by ADMIN
IME: Cannot type in RadRichTextBox using Microsoft Pinyin Input Method (Chinese)
Unplanned
Last Updated: 06 Apr 2022 12:25 by Megges
RichTextBox: HtmlFormatProvider: ListItems styles are changed in RichTextBox when Exported to HTML
Unplanned
Last Updated: 05 Apr 2022 12:21 by ADMIN
Tables are exported with the wrong cell height to HTML.
Unplanned
Last Updated: 05 Apr 2022 08:30 by ADMIN
Initial content in content controls is recognized as a placeholder. This is easily visible in the Date Picker content control and results in the whole text being selected when the user clicks over the date value.
Unplanned
Last Updated: 04 Apr 2022 14:03 by Kamran
When exporting to HTML of a DOCX file, containing table cells, which span multiple GridColumn wide, their width is incorrectly calculated. This can lead to columns being smaller or larger than their original width and possibly being cut off from the page.
Unplanned
Last Updated: 22 Mar 2022 08:00 by Oliver
Italic font style and bold font weight are not rendered correctly with a specific font. Currently, this is reproducible with the "zurich-ltcn-bt-light" font.
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.
Unplanned
Last Updated: 20 Dec 2021 06:26 by ADMIN
Copy Content and paste in comment causes Stackoverflow Exception 
Unplanned
Last Updated: 19 Nov 2021 14:26 by ADMIN
As a result, the track changes are visualized but not functioning properly.
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.

Unplanned
Last Updated: 26 Oct 2021 09:17 by ADMIN
Code is executed after focusing the RadRichTextBox and before the previous control loses the focus.
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;

Unplanned
Last Updated: 10 Sep 2021 07:13 by ADMIN

Hello,

 

In the attached example, applying character formatting to a selection that ends between two annotation ends and undoing the formatting action does not revert the annotations to the exact position as they were before the formatting was applied.

Applying formatting twice and undoing twice crashes the editor because the second undo command inserts unpaired annotations (as it operates on a document state different than the expected one).

Unplanned
Last Updated: 23 Aug 2021 12:01 by ADMIN
RichTextBox: Replacing text in a hyperlink puts the text with a wrong start position. It starts from the second index.
Unplanned
Last Updated: 04 Aug 2021 13:36 by ADMIN
The CSS style names shouldn't contain non-ASCII characters and if present, they should be escaped. HtmlFormatProvider doesn't escape them while exporting and cannot properly import the generated file.