Completed
Last Updated: 08 Apr 2024 14:24 by ADMIN
Release 2024.1.408
Make the MoveSelectionCommandParameter class public so one can easily access its parameters. 
Unplanned
Last Updated: 16 Feb 2024 10:15 by Jason
Created by: Jason
Comments: 0
Category: RichTextBox
Type: Feature Request
1
Export Emojis and special characters to PDF.
Completed
Last Updated: 13 Mar 2024 09:44 by ADMIN
Release 2024.1.219 (Preview)
Provide API that allows setting the width of the caret.
Unplanned
Last Updated: 06 Feb 2024 15:16 by Stenly
Add support for Alt property when importing/exporting an image using the DocxFormatProvider.
Unplanned
Last Updated: 02 Feb 2024 13:16 by Martin Ivanov
Currently, the CheckBox SDT doesn't support editing, compared to MS Word where you can change its font and other settings. Add support for this in RadRichTextBox.
Unplanned
Last Updated: 26 Jan 2024 09:24 by Oliver
There are some special characters in the Polish alphabet, which are inserted with key combinations - AltGr + E should insert "ę", Alt Gr + L should insert "ł". These combinations are overridden in RichTextBox because are triggering default commands in Silverlight.
 

Workaround: Attach to the PreviewEditorKeyDown event:
  this.radRichTextBox.PreviewEditorKeyDown += (sender, args) =>
     {
         if (Keyboard.Modifiers.HasFlag(ModifierKeys.Alt) && Keyboard.Modifiers.HasFlag(ModifierKeys.Control) && args.Key == Key.E)
         {
             args.SuppressDefaultAction = true;
             args.OriginalArgs.Handled = true;
             this.radRichTextBox.Insert("€");
         }
     };

Unplanned
Last Updated: 09 Jan 2024 07:34 by Caesar
 Performing an undo operation on a content control that cannot be deleted causes wrong behavior.
Unplanned
Last Updated: 02 Jan 2024 11:48 by Martin Ivanov
Currently, the document model reads the scene3d tag of the shape drawing, but RadRichTextBox doesn't support rendering this information. 
Unplanned
Last Updated: 20 Sep 2023 09:58 by Ihor
Text alignment is lost when creating fragment from selection or the IsLastParagraphClosed property is set to false.  
Unplanned
Last Updated: 31 Aug 2023 11:25 by Caesar
Add support for TextAlignment of lists similar to Word. In Word, the entire list can aligned to the center or right. 
Unplanned
Last Updated: 18 Aug 2023 07:48 by Thomas
Created by: Thomas
Comments: 0
Category: RichTextBox
Type: Feature Request
0
Add support for non-breaking hyphen.
Unplanned
Last Updated: 31 Jul 2023 13:30 by Stenly
Add a color palette that contains the highlight colors from the Office Open XML specification (see attached). Currently, we provide an extended palette that contains colors that are not supported in the DOCX format. 
Unplanned
Last Updated: 15 Jun 2023 09:46 by n/a
Auto text color in a cell in the table does not show the correct coloring. For example, when the background of the cell is changed to black or another dark color the text forecolor should be automatically adjusted. 
Unplanned
Last Updated: 14 Mar 2024 15:07 by Ivan
Expose events that are fired when the internal document commands are executed. 
Unplanned
Last Updated: 25 May 2023 08:30 by ADMIN
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: 17 Apr 2023 13:48 by James
Currently, custom bibliographic styles are not applied to the document when imported. Introducing an event will allow the user to provide the custom bibliographic style implementation and apply it to the document.
Unplanned
Last Updated: 10 Apr 2023 08:20 by James
All items in the FonntFamilly combo box must preview the respective font like in Word. This is implemented in the selection mini toolbar but not in the ribbon and the font properties dialog.  
Unplanned
Last Updated: 30 Mar 2023 08:17 by ADMIN
In Microsoft Word, users can modify the OutlineLevel in the Paragraph Properties dialog.
Unplanned
Last Updated: 28 Mar 2023 07:29 by Andy
Currently, it is difficult to validate hyperlinks without iterating over the document's elements. It will be very convenient to validate them on demand (when they are clicked). In this way warning window like in MS Word will be easily achievable.
Unplanned
Last Updated: 19 Jan 2023 14:59 by Stefan
Created by: Stefan
Comments: 0
Category: RichTextBox
Type: Feature Request
0
Simulate selection when caret is inside a field just like in MS Word.
1 2 3 4 5 6