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
Completed
Last Updated: 16 Sep 2020 12:47 by ADMIN
Release R3 2020
Some customers need special annotations to determine that the content between them should not be spell checked and they should/shouldn't be treated as word separators.
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.
Completed
Last Updated: 20 May 2021 14:13 by ADMIN
Release LIB 2021.2.525 (25/05/2021)
Expose property allowing the customers to show the popup without transparency.
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.
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: 28 Feb 2020 11:53 by ADMIN
Add a property that controls the spellcheck underline color 
Completed
Last Updated: 14 Feb 2020 11:37 by ADMIN
Release R1 2020 SP1
The Popup needs to be triggered to recalculate its position.

The following fixes the issue in PasteOptionsPopup.cs
 
        private bool SetLocation(Point location)
        {
            if (this.HorizontalOffset != location.X || this.VerticalOffset != location.Y)
            {
                this.HorizontalOffset = location.X;
                this.VerticalOffset = location.Y;
                return true;
            }
            // added the following 5 lines to trigger the popup to recalculate it's location
            else
            {
                this.VerticalOffset++;
                this.VerticalOffset--;
            }
            return false;
        }
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);
Unplanned
Last Updated: 26 Sep 2019 08:25 by ADMIN
Created by: Petar
Comments: 2
Category: RichTextBox
Type: Feature Request
2
Add ability for Import/Export of custom attributes to HTML.
Unplanned
Last Updated: 18 Sep 2019 16:06 by ADMIN
Created by: Ye
Comments: 0
Category: RichTextBox
Type: Feature Request
0
An option that enables users to paste any rich text content as a picture of it.