Unplanned
Last Updated: 09 Jun 2022 11:08 by Xiao
When there is a table and a paragraph in the header, the added watermark appears multiple times.
Unplanned
Last Updated: 08 Jun 2022 09:16 by ADMIN
The \sl (line spacing) RTF tag is supposed to be accompanied by a number indicating the value of the line spacing. According to the RTF specification: 

Space between lines. If this control word is missing or if \sl0 is used, the line spacing is automatically determined by the tallest character in the line. If N is a positive value, this size is used only if it is taller than the tallest character (otherwise, the tallest character is used); if N is a negative value, the absolute value of N is used, even if it is shorter than the tallest character. 


However, there are documents where the number is missing at all and MS Word interprets those as if the value is 0. RadRichTextBox visualizes these with lines of size close to zero which makes them invisible. Although this case is not mentioned in the specification, we can consider fixing it.
Unplanned
Last Updated: 07 Jun 2022 06:00 by Choung
The HighlightColor of spaces at the end of the line is not correct when the FlowNoWrap mode is used.
Completed
Last Updated: 06 Jun 2022 09:06 by ADMIN
Release LIB 2022.2.606 (06 Jun 2022)
RIchTextBox: Changing the current value of ComboBox/DropDownList/DatePicker/CheckBox content control causes two items to appear in the undo stack - Delete and Insert.
Unplanned
Last Updated: 27 May 2022 06:28 by Caesar
User is able to type in a content control even though its editing is not allowed by setting the "Content control cannot be edited" option.
Unplanned
Last Updated: 27 May 2022 06:22 by Caesar
Setting "Content control cannot be deleted" for a Plain Text content control breaks the editing rule and the user cannot edit the Plain Text control.
Unplanned
Last Updated: 26 May 2022 11:29 by Caesar
The default combo box item is restored when on exports content controls to xaml and then imports back
Unplanned
Last Updated: 26 May 2022 10:33 by Caesar
The PlaceholderText of Content Control should be restored when the content is deleted and the icon is clicked. 
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: 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: 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.'

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);
    }
}

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.

Duplicated
Last Updated: 04 May 2022 12:20 by ADMIN
Font changing to "Symbol" in bulleted list when exporting and importing HTML
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)
Completed
Last Updated: 18 Apr 2022 08:25 by ADMIN
Release LIB 2022.1.418 (18 Apr 2022)
The exception is thrown with a message "Item has already been added. Key in dictionary: 'RepeatButtonLineUpTemplate'" and it is caused by a duplicate style definition. 
Completed
Last Updated: 08 Apr 2022 07:32 by ADMIN
Release LIB 2022.1.411 (11 Apr 2022)
In word, the focus is transferred to the Find and Replace dialog immediately after opening it.

In the RichTextBox control the focus is not set to the dialog when open. Selecting a word does properly add it to the dialog.
Unplanned
Last Updated: 06 Apr 2022 12:25 by Megges
RichTextBox: HtmlFormatProvider: ListItems styles are changed in RichTextBox when Exported to HTML