Unplanned
Last Updated: 31 Oct 2018 07:54 by ADMIN
Images with display: none could be made not-visible in the UI. The other elements could be skipped and not imported.
Completed
Last Updated: 25 Jun 2016 13:17 by ADMIN
Workaround: Manipulate the clipboard content in CommandExecuting even handler:

private void RichTextBox_CommandExecuting(object sender, Telerik.Windows.Documents.RichTextBoxCommands.CommandExecutingEventArgs e)
{
    if (e.Command is PasteCommand)
    {
        DocumentFragment document = ClipboardEx.GetDocument();
        bool hasChangedDocument = false;

        foreach (FieldRangeStart fieldStart in document.EnumerateChildrenOfType<FieldRangeStart>())
        {
            foreach (Span span in fieldStart.Field.GetFragmentByDisplayMode(FieldDisplayMode.Code).EnumerateChildrenOfType<Span>())
            {
                span.ForeColor = Colors.Black;
                hasChangedDocument = true;
            }
        }

        if (hasChangedDocument)
        {
            ClipboardEx.SetDocument(document);
        }
    }
}
Unplanned
Last Updated: 31 Oct 2018 08:06 by ADMIN
If there is a Span surrounded with annotation ranges in a table cell and the table has conditional table style, the text cannot be selected after import of such document. If the table has normal table style (not a conditional one) everything works as expected. 

- If the annotations are bookmark ranges (start and end), the text cannot be selected with double-click over the text.
- If the text is hyperlink, the text could be selected with double-click, but when the selection is changed through the keyboard arrows, the same issue appears.

The issue appears with Docx documents, in addition to the attached Xaml one, so the issue seems not to be related to the XAML serialization.
Unplanned
Last Updated: 31 Oct 2018 08:06 by ADMIN
ADMIN
Created by: Todor
Comments: 0
Category: RichTextBox
Type: Feature Request
1
Allow Span to be hidden when visualizing the document. For example, introduce a Span.IsHidden property.

In MS Word, text is hidden using the Home -> Font -> Font -> Effects -> Hidden. In the RTF format, such text is preceded (marked) with a '\v' tag. In OOXML, the tag is <vanish/>

Note: Hidden text is visualized with dotted underline when formatting symbols are shown. Hidden text is not exported to PDF.
Unplanned
Last Updated: 31 Oct 2018 08:06 by ADMIN
With the current implementation, when an image is selected, viewport is scrolled to the corresponding image document position:

- In case of inline image, it moves to the end of the image, so that the image is fully visible.

- In case of floating image, it moves to the position where image is anchored.

The behavior of the MS Word (the view is not scrolled in such cases) is much more convenient.
Unplanned
Last Updated: 31 Oct 2018 08:06 by ADMIN
Trying to delete table cell formatting symbol, when track changes are on, will result in marking the text in the cell as deleted.
MS Word does not respect such delete action.
Completed
Last Updated: 20 Jun 2016 10:26 by ADMIN
ADMIN
Created by: Boby
Comments: 1
Category: RichTextBox
Type: Feature Request
1

			
Unplanned
Last Updated: 31 Oct 2018 07:54 by ADMIN
The ChangeListStyleCommand has an event named ListStyleChangedChanged  which is never raised.
Completed
Last Updated: 07 Jun 2016 07:01 by ADMIN
When the specified length of the stream is larger than the actual one, Adobe throws errors and removes the image.

Workaround:

Set the format provider settings:

PdfFormatProvider provider = new PdfFormatProvider();
PdfExportSettings exportSettings = new PdfExportSettings();
exportSettings.ContentsDeflaterCompressionLevel = 9;
exportSettings.ImagesDeflaterCompressionLevel = 9;
provider.ExportSettings = exportSettings;
Unplanned
Last Updated: 31 Oct 2018 07:54 by ADMIN
Currently, when an option is chosen from the drop-downs in Page Layout -> Page Setup -> Size/Margin/Orientation/Columns, the command is executed, but the item corresponding to the current value is not selected. For example, if the caret is in a Section with A3 size, Size -> drop-down -> A3 should be selected.
Unplanned
Last Updated: 31 Oct 2018 07:54 by ADMIN
When header/footer (HeaderFooterPresenterBase) is rendered, the model which corresponds to it (HeaderFooterBase's Body property) is not updated. The result is updated only in the presenter. Thus, when exporting the document or when checking the elements in the model, the value of the inline (span's text) is not updated.

Workaround: Update the fields in the headers/footers. RadDocumentEditor.UpdateAllFields() method can be used. Note that it works only for the main document and not its child documents, so different RadDocumentEditors should be created for each header/footer document.
Completed
Last Updated: 04 Nov 2019 09:37 by ADMIN
Release LIB 2019.3.1104 (11/04/2019)
HtmlFormatProvider cannot import a document that contains an image with invalid URI format. An UriFormatException is thrown and the whole import fails. Similar errors should be handled and the document should be imported.
Unplanned
Last Updated: 31 Oct 2018 08:11 by ADMIN
Currently, colors with alpha channel defined with 'rgba' function are not supported, for example the following:

<span style="background-color: rgba(0, 0, 0, 0.5);">Some text</span>

is imported as black color; semi-transparent colors are exported without the alpha channel.
Unplanned
Last Updated: 31 Oct 2018 07:54 by ADMIN
If span formatting command (bold, italic, strikethrough) is applied to selection over multiple paragraphs, and tracked with tracked changes; and later this tracked change is rejected, NullReferenceException is thrown. The exception is handled so the visible result for the end user is that the UI stops updating and any subsequent changes are not visible.
Completed
Last Updated: 11 Aug 2016 14:04 by Iva
The desired width of the tables is not set to 100 percent. Instead, the width of each column is set to the fixed value in dxa.
Unplanned
Last Updated: 31 Oct 2018 07:54 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: RichTextBox
Type: Feature Request
1
Add possibility to export files in MHTML format.
Unplanned
Last Updated: 31 Oct 2018 07:54 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: RichTextBox
Type: Feature Request
1
Add possibility to import files from MHTML format.
Unplanned
Last Updated: 13 Mar 2024 11:56 by Emin Sadigov
Track change for Insert - Hyperlink is not marked as change properly.
Unplanned
Last Updated: 15 Jan 2024 08:09 by Martin Ivanov
The character used to measure the non breaking spaces (the degree sign) is causing the space to render with a width bigger than the standard space. 
Completed
Last Updated: 11 Mar 2024 07:36 by ADMIN
Release 2024.1.312
RichTextBox: Sometimes Double mouse clicks will not execute when clicking into the middle of a letter (triple can become double). This is due to the mouse drag threshold, we should also expose the setting for this.