Unplanned
Last Updated: 13 Sep 2024 10:12 by ADMIN
The text is not committed and is still in edit mode when the control loses focus. The partial commit of content is not working as well.
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.
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: 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: 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: 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.

Unplanned
Last Updated: 22 Jan 2021 11:30 by ADMIN
 Table cells padding is changed when there is an empty cell
Unplanned
Last Updated: 11 Jun 2020 16:04 by ADMIN
With the current implementation, each change in a Table's structure invalidates the styling of all the cells in it when conditional styling is applied. This leads to re-rendering the whole table and affects the performance. If adding rows at the end of the table, only the new row can be styled. Another option is to expose API to allow the customers to disable the styling update while inserting rows and enable it after they are ready with the insertion.
Unplanned
Last Updated: 09 Jun 2020 14:47 by ADMIN
When importing an HTML file which contains table should align table cell content left and middle. Instead, it aligns them left and top.
Unplanned
Last Updated: 09 Jun 2020 09:12 by ADMIN
There is a problem with the export to HTML. After importing a HTML created outside of RichTextBox you can change the indentations of the list. But if you export it to HTML and then import it again, the indentation position is fixed and only the bullet representation is changing.
Unplanned
Last Updated: 10 Sep 2021 07:13 by ADMIN

Hello,

 

In the attached example, applying character formatting to a selection that ends between two annotation ends and undoing the formatting action does not revert the annotations to the exact position as they were before the formatting was applied.

Applying formatting twice and undoing twice crashes the editor because the second undo command inserts unpaired annotations (as it operates on a document state different than the expected one).

Unplanned
Last Updated: 21 May 2020 11:32 by ADMIN

Paste some text inside RadRichTextEditor. If the text has more rows than the currently visible area you will see that the control does not scroll down to the caret position.

Workaround:

 

private void RadRichTextBox_CommandExecuted(object sender, CommandExecutedEventArgs e)
{
    if (e.Command is PasteCommand)
    {             
        Application.DoEvents();

        bool cursorAtDocEnd = this.radRichTextBox.Document.CaretPosition.IsPositionAtDocumentEnd;
        if (cursorAtDocEnd)
        {
            MoveCaretCommand command = new MoveCaretCommand(this.radRichTextBox.RichTextBoxElement);
            command.Execute(MoveCaretDirections.Down);
        }
    }
}

 

Unplanned
Last Updated: 20 May 2020 07:03 by ADMIN
Dialogs and Context menu are not applied correctly during a runtime theme change.
Unplanned
Last Updated: 19 May 2020 12:00 by ADMIN
Created by: Martin
Comments: 0
Category: RichTextBox
Type: Feature Request
0
a:hover {
            color: #3ca9f6
} 
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: 14 May 2020 06:48 by ADMIN
Created by: Thomas
Comments: 0
Category: RichTextBox
Type: Feature Request
1
Currently, the address tag is not supported and everything within this tag is skipped on import.
Unplanned
Last Updated: 12 May 2020 08:54 by ADMIN

Scenario 1:

The <br/> tags after </li> are treated as separate paragraphs and inherit the list styling of the previous paragraphs resulting in duplicate bullets.

Workaround

var paragraphsToRemove = this.radRichTextBox.Document.EnumerateChildrenOfType<Paragraph>().Where(p => p.IsInList && p.Inlines.First() is Break);
foreach (var p in paragraphsToRemove)
{
    p.ListId = -1;
}
 
this.radRichTextBox.UpdateEditorLayout();

Scenario 2:
The <br/> tags added as the last element of <li> are treated as break elements in the content, causing additional new lines in the document.

Workaround:

var paragraphsWithLineBreak = document.EnumerateChildrenOfType<Paragraph>().Where(p => p.IsInList && p.Inlines.Last() is Break);
foreach (var p in paragraphsWithLineBreak)
{
    p.Inlines.Remove(p.Inlines.Last);
}
 
this.richtextbox.Document = document;


Unplanned
Last Updated: 19 May 2020 15:13 by ADMIN
When a <br/> element is the last element in a paragraph, it should be skipped.