Unplanned
Last Updated: 20 Nov 2020 07:39 by ADMIN
Created by: Lance
Comments: 0
Category: RichTextBox
Type: Feature Request
10
Implement a MarkdownFormatProvider, which will allow import/export from/to markdown format.
Unplanned
Last Updated: 04 Nov 2020 06:53 by ADMIN
Created by: Dimitar
Comments: 0
Category: RichTextBox
Type: Feature Request
1
This works in MS Word and the comments are exported at the bottom of the document
Unplanned
Last Updated: 29 Sep 2020 13:15 by ADMIN
Currently, inserting a code block is processed by the RichTextBox's InsertCodeBlock() method which takes the whole code block at once. This leads to UI freezing when the code block is very long. 
Unplanned
Last Updated: 28 Sep 2020 11:50 by ADMIN
Custom Style.DisplayName is overridden when importing XAML document
Unplanned
Last Updated: 24 Sep 2020 08:23 by ADMIN
Currently, only the content of the content controls is exported to PDF.
Unplanned
Last Updated: 03 Sep 2020 07:29 by ADMIN
Provide an option in the HtmlExportSettings to skip paragraph tags on export.

Workaround
htmlString = htmlString.Replace("<p>", string.Empty).Replace("</p>", string.Empty);
Unplanned
Last Updated: 03 Sep 2020 07:02 by ADMIN
Currently, when importing an RTF document that does not conform to RTF syntax an exception is thrown.

Telerik.Windows.Documents.FormatProviders.Rtf.Exceptions.RtfUnexpectedElementException: 'Exception of type 'Telerik.Windows.Documents.FormatProviders.Rtf.Exceptions.RtfUnexpectedElementException' was thrown.'
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: 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
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: 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: 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: 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: 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.
Unplanned
Last Updated: 28 Feb 2020 11:53 by ADMIN
Add a property that controls the spellcheck underline color 
Unplanned
Last Updated: 03 Jan 2020 18:11 by ADMIN
Created by: Bob
Comments: 0
Category: RichTextBox
Type: Feature Request
1
Support should be implemented for importing height CSS property applied to HTML table cells.
Unplanned
Last Updated: 13 Dec 2022 07:30 by ADMIN
Created by: Tanya
Comments: 2
Category: RichTextBox
Type: Feature Request
0

This element specifies the presence of a symbol character at the current location in the run’s content. It is similar to the sym element and is used to add emojis to the document content. The symEx element is not defined in the Office Open XML specification but it is part of the extensions of MS Word to the Office Open XML.

Currently one can insert emojis by pressing "Ctrl + .". However, the emojis are inserted in black and white. 

Unplanned
Last Updated: 23 Oct 2019 07:53 by ADMIN
HTML export of RadRichTextBox to perform font-size export in different units.

If you export a document using the HtmlFormatProvider, all style properties which contain measurement units are exported in pixel units. This makes the exported documents look much smaller when opened on devices with higher pixel density.

WORKAROUND: use Regex to find, convert and replace the font-size attributes

            HtmlFormatProvider html = new HtmlFormatProvider();
            string res = html.Export(document);
            Regex regex = new Regex(@"font-size: [0-9]*\.?[0-9]*px");
            Match match = null;

            do
            {
                match = regex.Match(res);
                if (!match.Success)
                {
                    break;
                }

                string value = match.Value.Substring("font-size: ".Length, match.Value.Length - "font-size: ".Length - "px".Length);
                double pts = double.Parse(value) * 72 / 96;
                res = res.Replace(match.Value, @"font-size: " + Math.Round(pts, 4) + "pt");
            } while (match.Success);

            File.WriteAllText("output.html", res);