Unplanned
Last Updated: 27 Aug 2020 05:54 by ADMIN
Memory leak caused by the section columns dialog
Unplanned
Last Updated: 24 Aug 2020 07:21 by ADMIN

This functionality is supported by MS Word

A possible workaround could be to enclose the RadSpreadsheet as a UI element. More information could be found in the InlineUIContainer help article.

Unplanned
Last Updated: 25 Aug 2020 11:16 by ADMIN

Hello,

   We found a problem when using the radrichtextbox control. When radrichtextbox is enabled to cancel input, error will be reported using the sougou Chinese input method. This problem will not occur in the English input method. Please help solve it. Thank you very much.

Unplanned
Last Updated: 18 Aug 2020 10:27 by ADMIN
Created by: Dimitar
Comments: 0
Category: RichTextBox
Type: Feature Request
2
One should be able to set the width of the caret
Completed
Last Updated: 16 Sep 2020 12:47 by ADMIN
Release R3 2020
Some customers need special annotations to determine that the content between them should not be spell checked and they should/shouldn't be treated as word separators.
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: 16 Apr 2021 14:33 by ADMIN
Keys in Traditional Chinese On-screen Keyboard are duplicated.
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: 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".

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">

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.
Completed
Last Updated: 26 Oct 2020 09:35 by ADMIN
Xaml exported in Net Core app cannot be imported with Net Framework app
Unplanned
Last Updated: 27 Jul 2020 13:13 by ADMIN
The list style is not changed according to the surrounding font
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>

Completed
Last Updated: 30 Nov 2020 15:03 by ADMIN
Release LIB 2020.3.1207 (07/12/2020)
Importing structured document tags with auto-close SdtContent tag throws InvalidCastException exception