Completed
Last Updated: 24 Aug 2021 14:13 by ADMIN
Release LIB 2021.2.830 (30 Aug 2021)
When calling a ChangeAllFieldsDisplayMode(FieldDisplayMode.Result) on a document containing a multiline document variable ("First Line\vSecond Line\vThird Line") leads to wrongly updated span box text.

The result is: "Third Line¬Third Line¬Third Line"
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.
Unplanned
Last Updated: 27 Jul 2021 08:17 by ADMIN
Rtf document with document variable that contains path cannot be parsed by the RtfFormatProvider 
Unplanned
Last Updated: 23 Jul 2021 09:38 by ADMIN
When a big image is pasted from Word with defined Square wrapping and the layout mode is Flow, then the scrollbar of the page is not visible and the image is not auto-stretched.
Unplanned
Last Updated: 08 Jul 2021 11:05 by Andrii
Unicode hex character code "​" is not rendered correctly 
Unplanned
Last Updated: 02 Jul 2021 10:05 by Emin Sadigov
A NullReferenceException is thrown when a new picture is inserted in a document with enabled tracked changes. Sometimes it might take two or three images to be inserted for the exception to occur once the document is open. The original document should contain image >> text >> image >> text.
Completed
Last Updated: 01 Jul 2021 14:16 by ADMIN
Release LIB 2021.2.705 (05 Jul 2021)
 Memory leak when loading a new document more than 20 times. The issue is introduced in version 2021.2.511.
Completed
Last Updated: 01 Jul 2021 07:24 by ADMIN
Release LIB 2021.2.531 (31/05/2021)
Run-time modifications on RadDocument may cause application freeze. It seems that the issue is caused by a deadlock in caret time logic.
Unplanned
Last Updated: 30 Jun 2021 14:55 by ADMIN
Created by: Blane Bunderson
Comments: 0
Category: RichTextBox
Type: Feature Request
0
Expose a property in RtfFormatProvider allowing the users to skip the document styles while exporting.
Unplanned
Last Updated: 30 Jun 2021 08:28 by ADMIN
Created by: Stefan
Comments: 0
Category: RichTextBox
Type: Feature Request
1
These shapes represent a thin line with an arrow. They cannot be inserted through the UI and are not properly rendered when importing a document with them.
Unplanned
Last Updated: 30 Jun 2021 08:27 by ADMIN
When the header contains fields whose result value length increases through the pages, the height of the first measured header is respected. This could result in missing content on the following pages. An example of such a field is the PAGE field whose value initially is a single-digit but can increase.
Completed
Last Updated: 10 Jun 2021 11:21 by ADMIN
Release R2 2021 SP1
Using InsertFragment to insert a table tracks only the table contents.
Completed
Last Updated: 10 Jun 2021 11:18 by ADMIN
Release R2 2021 SP1
RichTextBox: Exceptions when importing multiple docx files simultaneously 
Completed
Last Updated: 10 Jun 2021 10:57 by ADMIN
Release R2 2021 SP1
The PasteSource.SameRadDocument is not respected when pasting from the same document
Unplanned
Last Updated: 10 Jun 2021 05:47 by ADMIN
Currently when one inserts a column and the track changes feature is enabled a message appears that the action will not be marked as change.
Completed
Last Updated: 09 Jun 2021 09:54 by ADMIN
Release R2 2021 SP1

Try the following scenario:

  • In MS Word, create a table with text in every cell
  • In the RadRichTextBox, create a new document
  • Activate Review/Track Changes
  • Add some empty paragraphs or some text: change tracking markup will be displayed
  • Just after the inserted text, copy and paste the table from MS Word: none of the cells has change tracking markup
  • If you type inside the table, the new text has markup, but the text that was pasted with the table has no markup.
  • If you use the right arrow on the keyboard to exit the change tracking tag, then if you paste the table, it seems to work correctly.
Completed
Last Updated: 08 Jun 2021 11:01 by ADMIN
Release R2 2021 SP1
When applying a Mail Merge the images in Merge Fields are not exported.
Completed
Last Updated: 08 Jun 2021 10:19 by ADMIN
Release LIB 2021.2.608 (08 Jun 2021)
RadDocument instances are left in memory after editing and changing a document.
Unplanned
Last Updated: 01 Jun 2021 09:37 by ADMIN

The default styles are not copied when using the CreateDocumentFromSelection method.

Workaround: Manually copy the styles:

var document = radRichTextBox.Document.Selection.CreateDocumentFromSelection();
document.StyleRepository.Clear();
foreach (var item in radRichTextBox.Document.StyleRepository)
{
    var style = new StyleDefinition(item);
    document.StyleRepository.Add(style);
}