Completed
Last Updated: 12 Nov 2024 08:17 by ADMIN
Release Telerik UI for WPF 2024.4.1111 (2024 Q4)
UnverifiedXamlException is thrown when importing an XAML document that contains a DocumentPartProperties instance.
Unplanned
Last Updated: 09 Oct 2024 09:19 by Mark
   

To reproduce set he following properties: 

MouseSelectionHandler.DoubleClickTime = 1000;
MouseSelectionHandler.MouseDragThreshold = 2;

MouseSelectionHandler.MouseDoubleClickThreshold = 60;

Unplanned
Last Updated: 07 Oct 2024 05:31 by ADMIN
ADMIN
Created by: Mihail
Comments: 4
Category: RichTextBox
Type: Feature Request
11
Profiling results show bottleneck in the line-breaking logic within Paragraph MeasureOverride.
Unplanned
Last Updated: 26 Sep 2024 14:25 by Dimitar
Introduce support for import/export of a custom list styles in the HtmlFormatProvider. 
Unplanned
Last Updated: 09 Aug 2024 08:26 by Swapnil
 Unify the keyboard selection in tables with the arrow keys to match MS Word.
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: 14 Mar 2024 15:07 by Ivan
Expose events that are fired when the internal document commands are executed. 
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: 29 Feb 2024 08:11 by ADMIN

Multi-byte Unicode characters can be represented as multiple ANSI characters in the form \'xx, for example:
\'89\'ce can represent the character 火 if multi-byte encoding should be used. Using multi-byte encoding could be set explicitly using the \ucN tag, or implicitly using the \fcharset for the current font (e.g. \fcharset134 is double-byte).

When such text is imported (commonly CJK text [Chinese, Korean, Japanese] the characters are imported incorrectly (as two '?' or as two different characters for each character)

Such RTF documents are produced from Office 2010 (Word, Outlook), WordPad - on saving or on copying content from the applications.

Such behavior is observed when copying text from WPS Writer (version 11.2.0.10132) Part of WPS Office.
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.
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: 03 Jul 2023 05:34 by ADMIN
Add a way to convert between RadRichTextBox's RadDocument and RadWordsProcessing's RadFlowDocument. 

This will enable integration scenarios between the two products, including using RadWordsProcessing's format providers for import and export.
1 2 3 4 5 6