Completed
Last Updated: 14 Aug 2020 11:34 by ADMIN
Release LIB 2020.2.817 (17/08/2020)

While typing in RadRichtextBox using Korean (Microsoft IME) keyboard "space" or "Enter" repeats the last typed character.

Workaround: Create a custom caret (example for custom caret) and override the EnableAsynchronousTextInsertion property so you can set it to false.

Completed
Last Updated: 14 Aug 2020 11:12 by ADMIN
Release LIB 2020.2.817 (17/08/2020)
If the users press the Windows key while typing in IME, the current content is duplicated. 
Unplanned
Last Updated: 10 Aug 2020 08:50 by ADMIN
Currently, the text of the document is stored in the memory and it is not encrypted in any way.
Unplanned
Last Updated: 10 Aug 2020 06:12 by ADMIN
The first time users select an image and press Delete deletes only the fields and not the image.
Workaround: Attach to CommandExecuting and CommandExecuted events of RadRichTextBox and ensure the image is deleted using the following code:
private void radRichTextBox_CommandExecuted(object sender, CommandExecutedEventArgs e)
{
    if (e.Command is DeleteCommand && imageToDelete!=null)
    {
        this.radRichTextBox.Document.Selection.Clear();
        this.radRichTextBox.Document.Selection.AddDocumentElementToSelection(imageToDelete);
        this.radRichTextBox.Delete(true);
        this.imageToDelete = null;
    }
}

private ImageInline imageToDelete;
void radRichTextBox_CommandExecuting(object sender, Telerik.Windows.Documents.RichTextBoxCommands.CommandExecutingEventArgs e)
{
    if (e.Command is DeleteCommand)
    {
        var selectedBoxes = this.radRichTextBox.Document.Selection.GetSelectedBoxes().ToList();
        if (selectedBoxes.Count() == 2 && selectedBoxes[0].AssociatedInline is FieldRangeStart && selectedBoxes[1].AssociatedInline is ImageInline)
        {
            imageToDelete = selectedBoxes[1].AssociatedInline as ImageInline;
        }
    }
}

Unplanned
Last Updated: 07 Aug 2020 11:29 by ADMIN
On-screen keyboard disappears most of the time when using touch monitor to type.
Unplanned
Last Updated: 04 Aug 2020 13:22 by ADMIN
After pressing Shift + Enter the FontWeights is not preserved on the second line when the text on the first line starts with Bold and ends with Regular FontWeights (check the attached record.gif). 
Unplanned
Last Updated: 04 Aug 2020 06:15 by ADMIN
The table merge and columns width are not correct when importing a specific document
Unplanned
Last Updated: 03 Aug 2020 13:16 by ADMIN

When the LayoutMode is set to Flow the size of the numbers is larger than expected.

This behavior is not observed in LayoutMode="Paged".

Completed
Last Updated: 03 Aug 2020 08:15 by ADMIN
Release LIB 2020.2.803 (03/08/2020)
Created by: Hirofumi
Comments: 0
Category: RichTextBox
Type: Bug Report
0
While using Japanese IME, inserting half-width space using Shift+Ctrl results in two spaces added to the document.
Completed
Last Updated: 03 Aug 2020 08:11 by ADMIN
Release LIB 2020.2.803 (03/08/2020)
This behavior is observed when copy and paste a Chinese text wrapped in a bookmark.

Steps to reproduce:
1. Import the attached document (testDocument.docx)
2. Mark the text paragraph including the preceding it empty paragraph and copy them (check the attached: record.gif)
3. Paste the copied content at the end (for example) of the document.
Observed: The copied text content is duplicated when pasted.
Unplanned
Last Updated: 31 Jul 2020 09:35 by ADMIN

Appling the following command changing the margin but doesn't change the position of the DocumentRuler:

this.radRichTextBox.ActiveDocumentEditor.ChangeSectionPageMargin(new Padding((int)Unit.InchToDip(3.0)));

 

The result:

A possible workaround could be calling the protected OnSeparatorsChanged() method using reflection: 
MethodInfo method = typeof(RadRichTextBoxRulerController).GetMethod("OnSeparatorsChanged", BindingFlags.NonPublic | BindingFlags.Instance);
method.Invoke(this.ruler.Controller, null);
Where this.ruler is:

<telerik:DocumentRuler x:Name="ruler">

Unplanned
Last Updated: 27 Jul 2020 13:13 by ADMIN
The list style is not changed according to the surrounding font
Unplanned
Last Updated: 22 Jul 2020 12:35 by ADMIN
The ImagesDeflaterCompressionLevel and ContentsDeflaterCompressionLevel in the PdfFormatProvider's export settings have 0 for default value instead of -1.

Workaround: Change the settings's properties to -1 explicitly.
Unplanned
Last Updated: 20 Jul 2020 08:29 by ADMIN
Additional optional hyphen is inserted between two divs when the text in the first one is wrapped in <p> tag and in the second is not:
<!DOCTYPE html>
<html>
<body>

<div><p>RadDocument</p></div>
<div>Document</div>

</body>
</html>

Unplanned
Last Updated: 07 Jul 2020 14:18 by ADMIN
When using Japanese, the content should not flow after the content border. Instead, it should be moved on the next line.
Unplanned
Last Updated: 07 Jul 2020 11:01 by ADMIN
Created by: Hirofumi
Comments: 0
Category: RichTextBox
Type: Feature Request
4
When this alignment is used, all the lines (including the last one) are stretched up to the page margins. This alignment is supported in Silverlight, but currently not implemented for WPF. The task is blocked by missing property in the framework: https://github.com/dotnet/wpf/issues/293 
Unplanned
Last Updated: 06 Jul 2020 06:52 by ADMIN
Default FontFamily and FontSize values (Calibri, 11) are not respected during paste, when the normal style of the source document is modified. Those values are replaced with the default values for RadDocument, which are different (Verdana 12)
Unplanned
Last Updated: 30 Jun 2020 07:50 by ADMIN

Dear all,

 

Exporting partially-selected annotation ranges (annotation markers around selection or only one annotation marker in the selection) with a DocumentFragment from a RadDocument does not seem possible (the DocumentFragment contains none of these annotation ranges).

 

For example, if I have a document ("[", "]" are the annotation markers):

"Test [annotated]",

select "Test [ann" and create a DocumentFragment, the Document fragment will contain "Test ann" and not "Test [ann]".

 

PS.: I am not sure if this falls into the feature request or bug report area.

Unplanned
Last Updated: 25 Jun 2020 08:09 by ADMIN
RtfFormatProvider does not import fonts when font definition starts with "fnil" tag
Unplanned
Last Updated: 23 Jun 2020 13:03 by ADMIN

The RtfFormatProvider does not take the fonts from the Font.Manager

Workaround: 

Unregister all custom fonts and the use the FontSubstituting event to supply the correct fonts:

private void ImportSettings_FontSubstituting(object sender, Telerik.Windows.Documents.FormatProviders.FontSubstitutingEventArgs e)
{
    var fonts = Wpf.Fonts.Fonts.GetAllAvailableFonts();
    var ff = fonts.Where(x => x.Source == e.OriginalFontName).FirstOrDefault();
    e.SubstitutionFontFamily = ff; 

}

After the import is complete you can register the fonts again.