Unplanned
Last Updated: 25 May 2023 13:23 by Xiao
Image inline is not transferred to the next page and is cropped when it is too big for the remaining space on the current page.
Unplanned
Last Updated: 25 May 2023 08:30 by ADMIN
Add an option for users to be able to export embedded images as Content IDs.
CID images work by attaching the image to the email sent and then using standard HTML image tags that reference that image to eventually embed it in the email when the user opens it.
Unplanned
Last Updated: 24 May 2023 12:09 by ADMIN
If the margins of one side are equal to the default value, it will become 0 after import

Unplanned
Last Updated: 15 May 2023 11:46 by Pedro
XamlFormatProvider: OutOfMemoryException when importing a document in Windows Server 2012 environment.
Unplanned
Last Updated: 08 May 2023 13:13 by Helen
Rotating a large image causes OutOfMemoryException.
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.
Unplanned
Last Updated: 20 Apr 2023 11:59 by ADMIN
In some complex script languages, like Telugu and Thai language, some characters are grouped (e.g. consonants + vowels) in new grapheme. 

For example, type 'p' in Telugu - 'జ', followed by 'ో' - they are combined in new grapheme - 'జో', or paste the following Thai grapheme: ชื

UI correctly visualizes this, but:
- Text measuring assumes that the grapheme width is equal to the sum of the widths of its parts (characters), which is not correct. Selection and caret position are scrambled because of this.
- There are document positions between  the grapheme parts (characters), but shouldn't.
- When the caret is before the grapheme, deleting with "Delete" key deletes the grapheme in multiple steps (character by character), but should delete it in single step. Deleting with "Backspace" works correctly.
- There are some unsupported combinations in some languages. For example in Thai, typing 'z' then 'y' will produce grapheme, but typing 'w' then 'y' will not produce grapheme, and the 'y' should be ignored.
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:48 by James
Currently, custom bibliographic styles are not applied to the document when imported. Introducing an event will allow the user to provide the custom bibliographic style implementation and apply it to the document.
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: 10 Apr 2023 08:20 by James
All items in the FonntFamilly combo box must preview the respective font like in Word. This is implemented in the selection mini toolbar but not in the ribbon and the font properties dialog.  
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: 30 Mar 2023 08:17 by ADMIN
In Microsoft Word, users can modify the OutlineLevel in the Paragraph Properties dialog.
Unplanned
Last Updated: 28 Mar 2023 07:29 by Andy
Currently, it is difficult to validate hyperlinks without iterating over the document's elements. It will be very convenient to validate them on demand (when they are clicked). In this way warning window like in MS Word will be easily achievable.
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
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.