Unplanned
Last Updated: 31 Oct 2018 08:07 by ADMIN
ADMIN
Created by: Petya
Comments: 0
Category: RichTextBox
Type: Feature Request
0
Add support for TIME field. More information here:
https://support.office.com/en-us/article/Field-codes-Time-field-6cb8fcef-310a-4646-ae6b-886d88335c90?ui=en-US&rs=en-US&ad=US
Unplanned
Last Updated: 17 Jun 2022 12:54 by ADMIN

No visual cue when image deleted or inserted when "Track changes" is activated. 

When inserting an image with the Track Changes option toggled, the image should be underlined with red and it isn't. When deleting an image with Track Changes on, it is also not crossed with red. In both cases, the only mark that a change was made is the vertical line on the left.

Completed
Last Updated: 16 Feb 2022 11:51 by ADMIN
Release R1 2022 SP1
Exception when loading document with ConnectionShapeLocks
Duplicated
Last Updated: 04 May 2022 12:20 by ADMIN
Font changing to "Symbol" in bulleted list when exporting and importing HTML
Completed
Last Updated: 27 Sep 2021 08:00 by ADMIN
Release LIB 2021.3.927 (27 Sep 2021)
Moving focus away causes 2 lost focus events - one from the caret and one from document presenter. Both of them bubble to the parent RadRichTextBox, causing an inconsistent behavior.
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
Won't Fix
Last Updated: 11 Aug 2016 14:04 by ADMIN
Steps to reproduce:
1. Type a long word in the editor. The word must be longer than the width of the page.
2. Set a hanging indent different than the default one.
3. Select part of the word starting from the beginning of the paragraph.
4. Add an annotation range, e.g. a Comment

Result: The hanging indent is not properly reflected in the editor.
Completed
Last Updated: 11 Aug 2016 14:04 by ADMIN
The time it takes to apply highlighting to a document in Flow layout mode is more than expected. See ticket 555863 for a sample project and document.
Declined
Last Updated: 13 Dec 2016 06:35 by ADMIN
When you click for second time the caret locates in the correct position. I.e. there are needed 2 clicks before first line of paragraph which starts with bookmark to set the correct caret position. It also cause the problem of incorrect selection which will select the previous paragraph.

This is because bookmarks essentially don't have position before them.
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.
Declined
Last Updated: 12 Jan 2017 15:03 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 1
Category: RichTextBox
Type: Bug Report
0
Styles from RTF are incorectly copied to RRTB.
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.