Unplanned
Last Updated: 23 Apr 2024 20:08 by ADMIN
In RadRichTextEditor columns are narrow, not displaying correctly as in original file.
Unplanned
Last Updated: 17 Apr 2024 14:44 by ADMIN
To reproduce:
- Add some full pages to the editor. 
- Remove all margin from the print settings and document settings.
- PrintPreview the document.
- Seth the print preview dialog zoom to 100% and compare the documents.
- You will notice that the print document's content is smaller.
Unplanned
Last Updated: 10 Apr 2024 13:53 by Benjamin

This is the used code snippet:

        static void Main(string[] args)
        {
            Telerik.WinForms.Documents.Model.RadDocument templateDocument = GetDocument("Template.rtf");
            Telerik.WinForms.Documents.Model.RadDocument contentDocument = GetDocument("Content.rtf");

            Telerik.WinForms.Documents.Model.Merging.InsertDocumentOptions options = new Telerik.WinForms.Documents.Model.Merging.InsertDocumentOptions();
            options.ConflictingStylesResolutionMode = Telerik.WinForms.Documents.Model.Merging.ConflictingStylesResolutionMode.RenameSourceStyle;
            options.InsertLastParagraphMarker = true;

            Telerik.WinForms.Documents.Model.RadDocumentEditor templateEditor = new Telerik.WinForms.Documents.Model.RadDocumentEditor(templateDocument);
            templateEditor.InsertFragment(new Telerik.WinForms.Documents.Model.DocumentFragment(contentDocument));

    
            string mergedDocumentFilePath = "MergeDocumentsWithRichTextEditor.rtf";
            File.Delete(mergedDocumentFilePath);
            WriteDocToFile(templateDocument, mergedDocumentFilePath);

        }
        private static Telerik.WinForms.Documents.Model.RadDocument GetDocument(string rtfFilePath)
        {
            Telerik.WinForms.Documents.Model.RadDocument document = null;
            var rtfImporter = new Telerik.WinForms.Documents.FormatProviders.Rtf.RtfFormatProvider();
            using (Stream stream = File.OpenRead(rtfFilePath))
            {
                document = rtfImporter.Import(stream);
            }
            return document;
        }


        private static void WriteDocToFile(Telerik.WinForms.Documents.Model.RadDocument doc, string filename)
        {
            var rtfExporter = new Telerik.WinForms.Documents.FormatProviders.Rtf.RtfFormatProvider();
            string rtfText = rtfExporter.Export(doc);
            File.WriteAllText(filename, rtfText);

            Process.Start(filename);
        }

Observed result: 

Expected result: keep the After spacing as it is in the original documents.

Unplanned
Last Updated: 09 Apr 2024 13:38 by ADMIN
Pasting from Excel will add the text to a table. Keep Text Only paste option should ignore the table and paste only the text. 
Unplanned
Last Updated: 05 Apr 2024 08:42 by ADMIN

In the Fluent theme, the Font Size Dropdown of the SelectionMiniToolBar is not wide enough.

Declined
Last Updated: 16 Feb 2024 20:31 by ADMIN
Created by: Larry
Comments: 2
Category: RichTextEditor
Type: Bug Report
1
There appears to be an issue when adding Comments that overlap each other. I will attach a video to my next reply that shows how to replicate the issue.
Completed
Last Updated: 14 Feb 2024 12:33 by ADMIN
Release R2 2021
ADMIN
Created by: Hristo
Comments: 6
Category: RichTextEditor
Type: Feature Request
8
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
Unplanned
Last Updated: 01 Feb 2024 13:55 by ADMIN
The command tabs collection in the RichTextEditorRibbonBar is not intended to be modified design time. The EditCommandTabs option in the smart tag should not be available. This collection is recreated the moment you close and reopen the designer. The same will happen when you run the application. This option should be removed from the smart tag.
Completed
Last Updated: 31 Jan 2024 11:39 by ADMIN
Release 2024 Q1 (2024.1.130)
Unplanned
Last Updated: 14 Dec 2023 10:40 by ADMIN
Add a property that can control whether a table row is allowed to break across pages or not.
Unplanned
Last Updated: 02 Nov 2023 12:58 by ADMIN
Unplanned
Last Updated: 25 Sep 2023 06:34 by ADMIN

MS Word offers "Go To" option in its Find and Replace dialog:

It is reasonable to add similar scrolling behavior when navigating in document, programatic scrolling and GoTo~() methods.

Unplanned
Last Updated: 01 Aug 2023 05:36 by ADMIN
Created by: Ian
Comments: 1
Category: RichTextEditor
Type: Feature Request
1

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/>. The display: none; style from HTML is mapped to hidden text when document is converted to DOCX.

Unplanned
Last Updated: 25 Jul 2023 10:08 by Dinko

Add support for importing of imaged defined with VML's v:imagedata inside v:image or v:shape. Currently, such images are just skipped.

A possible workaround is to upgrade the documents to a newer DOCX compatibility setting (by re-saving them with MS Word for example), where such shapes are not allowed and are replaced with more modern constructs which the import of RadRichTextEditor supports.

Unplanned
Last Updated: 22 Jun 2023 10:17 by Rakesh
Created by: Rakesh
Comments: 0
Category: RichTextEditor
Type: Feature Request
1
Import the div border settings from HTML. We can create a span with a border in this case. 
Unplanned
Last Updated: 12 Jun 2023 13:15 by ADMIN
To reproduce:
Import a document which contains square  brackets and fields (the document must use right to left language).
Unplanned
Last Updated: 05 Jun 2023 05:33 by ADMIN
Slow performance when importing documents with many hyperlink fields from RTF or Docx
Unplanned
Last Updated: 24 May 2023 14:25 by Fabian
Add an option for users to be able to export embedded images as Content IDs.
CID images work by attaching the image to the email sent and then using standard HTML image tags that reference that image to eventually embed it in the email when the user opens it.
Unplanned
Last Updated: 24 May 2023 12:02 by Sam
Created by: Sam
Comments: 0
Category: RichTextEditor
Type: Feature Request
0
These tags define deleted and inserted content to markup updates and modifications in a document. They can be used to export the revisions of a document when Track Changes is enabled.
Unplanned
Last Updated: 16 May 2023 13:57 by ADMIN
Created by: Robyn
Comments: 1
Category: RichTextEditor
Type: Feature Request
1
1 2 3 4 5 6