Completed
Last Updated: 08 Dec 2021 10:56 by ADMIN
Release LIB 2021.3.1213 (13 Dec 2021)
RichTextBox: Expose a way so one can access the text of the shape via the public API.
Unplanned
Last Updated: 19 Oct 2021 06:53 by ADMIN
Created by: Morten
Comments: 0
Category: RichTextBox
Type: Feature Request
1
When using RadDocumentMerger to merge or append a document, and an undo group has been started, the following exception is thrown: System.InvalidOperationException: 'Clear Undo while in begin undo group'
Unplanned
Last Updated: 17 Jun 2022 12:54 by ADMIN

No visual cue when image deleted or inserted when "Track changes" is activated. 

When inserting an image with the Track Changes option toggled, the image should be underlined with red and it isn't. When deleting an image with Track Changes on, it is also not crossed with red. In both cases, the only mark that a change was made is the vertical line on the left.

Completed
Last Updated: 24 Aug 2021 14:13 by ADMIN
Release LIB 2021.2.830 (30 Aug 2021)
Watermark position is not correct when using multiline text
Unplanned
Last Updated: 30 Jun 2021 14:55 by ADMIN
Created by: Blane Bunderson
Comments: 0
Category: RichTextBox
Type: Feature Request
0
Expose a property in RtfFormatProvider allowing the users to skip the document styles while exporting.
Unplanned
Last Updated: 30 Jun 2021 08:28 by ADMIN
Created by: Stefan
Comments: 0
Category: RichTextBox
Type: Feature Request
1
These shapes represent a thin line with an arrow. They cannot be inserted through the UI and are not properly rendered when importing a document with them.
Unplanned
Last Updated: 10 Jun 2021 05:47 by ADMIN
Currently when one inserts a column and the track changes feature is enabled a message appears that the action will not be marked as change.
Completed
Last Updated: 10 Jun 2021 11:18 by ADMIN
Release R2 2021 SP1
RichTextBox: Exceptions when importing multiple docx files simultaneously 
Completed
Last Updated: 15 Sep 2021 12:59 by ADMIN
Release R3 2021
Created by: Martin
Comments: 0
Category: RichTextBox
Type: Feature Request
1
Add support for text containers in Shapes. Including, text formatting, editing, and placement options.
Unplanned
Last Updated: 18 May 2021 08:29 by ADMIN
  • Each RichText element should contain a unique id. The id contains DateTime.UtcNow.Ticks. This format is requiring to know which RT elements were added from the last change.
  • Export these ids into html as is and import.
  • For compatibility, id should have a different attribute name, for example:
    <p data-telerik-id="Paragraph637567542110611335">
    	<span data-telerik-id="Span637567542110611345">
    		Test
    	</span>
    </p>
    Note: data-* is Global attribute name: https://www.w3schools.com/tags/att_data-.asp

    Id value example:
    public class HiResDateTime
    {
    	private static long lastTimeStamp = DateTime.UtcNow.Ticks;
    	private static readonly Regex digitsOnly = new Regex(@"[^\d]");
    	public static long UtcNowTicks
    	{
    		get
    		{
    			long original, newValue;
    			do
    			{
    				original = lastTimeStamp;
    				long now = DateTime.UtcNow.Ticks;
    				newValue = Math.Max(now, original + 1);
    			} while (Interlocked.CompareExchange
    						 (ref lastTimeStamp, newValue, original) != original);
    
    			return newValue;
    		}
    	}
    
    	public static string UtcNowTicksString => digitsOnly.Replace(UtcNowTicks.ToString(), "");
    }

 
Unplanned
Last Updated: 09 Apr 2021 13:05 by ADMIN
Add informational items such as Page Number, Line Number, Column, Word Count, Character Count, at RichTextBox's status bar.
Completed
Last Updated: 09 Feb 2021 15:51 by ADMIN
Release LIB 2021.1.215 (15/2/2021)
Created by: Ralf
Comments: 0
Category: RichTextBox
Type: Feature Request
0
When trying to export a document containing an ".ico" image to DOCX or RTF an exception is thrown.
Unplanned
Last Updated: 04 Jan 2021 12:54 by ADMIN
Created by: Tanya
Comments: 0
Category: RichTextBox
Type: Feature Request
1
RadRichTextBox's ContextMenu should open when the Context menu key on the keyboard is pressed. 
Unplanned
Last Updated: 23 Nov 2020 10:42 by ADMIN
Provide API for enforcing the use of only FIPS 140-2 compliant hashing algorithms
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);