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.
Completed
Last Updated: 09 Jun 2020 13:53 by ADMIN
Release R2 2020 SP1
Import the type of the <ul> and <ol> tag, e.g. <ul type="disc"> or <ul type=circle>. Supported values are disc, circle, square.
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.
Completed
Last Updated: 03 Jun 2020 13:19 by ADMIN
Release LIB 2020.2.608 (06/08/2020)
ADMIN
Created by: Telerik Admin
Comments: 2
Category: RichTextBox
Type: Feature Request
5
Select current style (the style in the selection or under the caret) in styles gallery when selection or caret position is changed. 
Completed
Last Updated: 21 May 2020 16:42 by ADMIN
Release R2 2020
ADMIN
Created by: Telerik Admin
Comments: 19
Category: RichTextBox
Type: Feature Request
49
Implement support for content controls (a.k.a. Structured document tags), which will allow inserting editing controls in the document:

- Rich Text
- Plain Text
- Check Box
- Combo Box
- Drop-down list
- Date picker

Do not confuse this feature with form fields support (see http://feedback.telerik.com/Project/143/Feedback/Details/146869 ).
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: 21 May 2020 11:22 by ADMIN
ADMIN
Created by: Tanya
Comments: 2
Category: RichTextBox
Type: Bug Report
4
Tab stops with visible tab leader (dot, hyphen, underscore) are not exported to PDF.

Steps to reproduce:
- Start with empty document
- In Paragraph Properties dialog, choose Tabs
- In Tab dialog, enter Tab stop position = 2, Leader = underscore, and press Set. Press OK
- Add a word, press Tab, add another word
- Export the text to PDF

Expected: the words are separated with underscores in the exported PDF.
Actual: the words are separated with blank space in the exported PDF.
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 15:13 by ADMIN
When a <br/> element is the last element in a paragraph, it should be skipped.
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: 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: 08 May 2020 07:12 by ADMIN
When multiple citations are created in MS Word (TestSave.docx) and then the document is opened in richTextBox and you update fields the update command removes the additional citations (TestSave2.docx)
Declined
Last Updated: 05 May 2020 12:28 by ADMIN
When creating Multiple citations in word (TestSave.docx) and then updating the fields in telerik (TestSave2.docx), it changes the field and removes the additional citations.
Unplanned
Last Updated: 01 May 2020 07:28 by ADMIN
Some fonts doesn't include bold and italic font styles. Currently text formatted with such fonts and with applied bold or italic formatting is exported without the italic or bold effect. Instead, the default typeface can be exported, and additional transformation could be applied to the letters itself - e.g. skew transform for the italic.
Unplanned
Last Updated: 09 Apr 2020 14:16 by ADMIN
The document content is not measured properly, leading to incorrect selection ranges.
Declined
Last Updated: 08 Apr 2020 06:57 by ADMIN
Created by: David
Comments: 3
Category: RichTextBox
Type: Feature Request
0

In localizing your demo code for a RichTextBox I noticed some size mode-related inconsistencies in icon placements in the various sorts of buttons:

In Size=large, generally the icon appears above the button text. In the split button the icon is centered over and partially obscures the text. Unacceptable!

In Size=medium, generally the icon appears to the left of the text. In the Split button it appears below the text. Either is fine but should be consistent.

Also, when Size=medium and icon beside text, in all buttons I would like to see more spacing between the icon and the text; there seems to be virtually none.

Unplanned
Last Updated: 07 Apr 2020 07:06 by ADMIN
Created by: Iva
Comments: 2
Category: RichTextBox
Type: Feature Request
5
Currently, the only customization that can be performed is using HyperlinkToolTipFormatString property of RadRichTextBox, which sets the format for all hyperlinks in the document of the control. It would be nice if it were possible to be able to set different tooltips. 
Unplanned
Last Updated: 01 Apr 2020 10:19 by ADMIN
Created by: Dimitar
Comments: 0
Category: RichTextBox
Type: Feature Request
0
 Support page-breaks in html import/export.