Completed
Last Updated: 18 May 2023 12:12 by ADMIN
Release R2 2023
When trying to export a document containing InlineUIContainer inside a read-only range, the XamlWriter.Save() method that is used in XamlFormatProvider.Serialize() throws StackOverflow exception.

Sample code to reproduce the exception:
InlineUIContainer container = new InlineUIContainer();
Button btn = new Button();
btn.Content = "Sample Button";
btn.Width = 70;
btn.Height = 30;
container.UiElement = btn;

ReadOnlyRangeStart start = new ReadOnlyRangeStart();
ReadOnlyRangeEnd end = new ReadOnlyRangeEnd();
end.PairWithStart(start);
this.rtb.InsertInline(container);
this.rtb.Document.Selection.SelectAll();
this.rtb.InsertAnnotationRange(start, end);

XamlFormatProvider provider = new XamlFormatProvider();

string content = provider.Export(this.rtb.Document);
File.WriteAllText(@"c:\temp\asd.xaml", content);
Unplanned
Last Updated: 15 May 2023 11:46 by Pedro
XamlFormatProvider: OutOfMemoryException when importing a document in Windows Server 2012 environment.
Completed
Last Updated: 15 May 2023 09:33 by ADMIN
Release R3 2018
When a table is dragged after a page break, and then Undo/Redo is performed for the drag operation NullReferenceException is thrown.
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.
Unplanned
Last Updated: 08 May 2023 13:13 by Helen
Rotating a large image causes OutOfMemoryException.
Completed
Last Updated: 08 May 2023 13:07 by ADMIN
Release LIB 2023.1.522 (22 May 2023)
If you copy a checkbox content control with non-default checked/unchecked symbols and interact with it by changing its state, you will observe that the said symbols are the default ones.
Unplanned
Last Updated: 03 May 2023 08:03 by Morten
Formatting is reset to default when entering a new line while Track Changes is on.
Completed
Last Updated: 25 Apr 2023 11:01 by ADMIN
Release LIB 2023.1.509 (09 May 2023)
Selecting the content inside annotation range and deleting it removes the annotation range start from the document.
Unplanned
Last Updated: 20 Apr 2023 07:51 by ADMIN
The ShowPlaceholder property of Content Control is not handled correctly when importing .docx files.
Unplanned
Last Updated: 17 Apr 2023 13:44 by James

KeyNotFoundException is thrown when loading a document with a custom bibliographic style applied.

As a workaround, you can change the current bibliographic style to one of the predefined styles before the export of the document.

...
this.radRichTextBox.CommandExecuting += RadRichTextBox_CommandExecuting;
...

...
private void RadRichTextBox_CommandExecuting(object sender, CommandExecutingEventArgs e)
{
    if (e.Command is SaveCommand)
    {
        this.radRichTextBox.ChangeBibliographicStyle(new APAFifthEditionStyle());
    }
}

Unplanned
Last Updated: 12 Apr 2023 06:20 by Patrick
The Green Theme is not loaded when using a custom style for the RadRichTextBox
Unplanned
Last Updated: 06 Apr 2023 09:30 by kim
Created by: kim
Comments: 0
Category: RichTextBox
Type: Bug Report
0

Korean language input does not work correctly on Windows 11 versions after 22H2 (OS Build 22621.1265).

This is related to an update to the Microsoft Input Method Editor (IME). The workaround is to enable the "Previous version of Microsoft IME" (check the attached screenshots for the steps).

Unplanned
Last Updated: 20 Mar 2023 06:36 by Gabriel
The caret position is incorrect with the custom Gilroy font
Unplanned
Last Updated: 15 Mar 2023 10:26 by Caesar
When spanning content control on two pages, the border of the content control is displayed abnormally
Unplanned
Last Updated: 15 Mar 2023 10:20 by Caesar
After inserting a line break in front, the border of the content control does not appear correctly
Declined
Last Updated: 10 Mar 2023 11:55 by ADMIN
When text is using fonts with defined ligatures (e.g. Calibri, Gabriola, etc.) and contains character groups with defined ligature for it, the text width is measured incorrectly (shorter that it should be). As caret and selection navigates on positions computed by this measuring system, they are not synchronized with what is shown in the UI (which correctly respects the ligatures), and there is slight offset from the real character positions and/or clipping of part of the letters at the end of the line.

Examples of such groups are (depending on the font) "tt", "ff", "ffi".
Unplanned
Last Updated: 10 Mar 2023 11:09 by ADMIN

Importing a document with block-level content controls from XAML causes them to become corrupt. If you scroll to a position in which the said control is only partially visible a NullReferenceException is thrown.

A possible workaround would be to initially save the document as a DOCX (just exporting it to DOCX will not fix the issue as the information is already corrupt).

Another way to reproduce this issue:

1. Create a new document and insert a Rich Text Content Control.

2. Save the document as a XAML file.

3. Reopen the XAML file.

4. Move the caret inside the Content Control.

5. Try to insert a new line by hitting Enter - no new line is added as the content control is marked as Inline Level after the import in step 3.

Case 2: 

Create a document with TOC where the content control of the TOC contains some other inlines.

 

Unplanned
Last Updated: 08 Mar 2023 10:07 by Caesar
When there is a table with permission range outside the table (for instance the line above the table) and the user deletes it, then performs undo>>redo>>undo operation, then this leads to a NullReferenceException.
Unplanned
Last Updated: 20 Feb 2023 07:25 by Naval
An extra line is added when an HTML document with <br> tag inside a <div> is imported.
Completed
Last Updated: 14 Feb 2023 11:36 by ADMIN
Release LIB 2023.1.220 (20 Feb 2023)
When using Crystal/Green/Material/Office2016/Windows11 Theme, the header text of PasteOptionsPicker is not localized.