Unplanned
Last Updated: 18 May 2017 10:52 by ADMIN
DocumentRuler.CreateHorizontalRuler and DocumentRulerCreateVerticalRuler properties are not always changing the visibility of the horizontal and vertical ruler when set to false. If the properties are set to false in XAML, the corresponding ruler parts are still visible.

The problem is that the values of the properties are reset internally during the controls creation, and after the layout mode of the document is changed.

Workaround: Set the properties in code behind, and reset them after layout mode change:

        public MainWindow()
        {
            InitializeComponent();

            this.ruler.CreateHorizontalRuler = false;
            this.radRichTextBox.DocumentLayoutModeChanged += (sender, e) => this.ruler.CreateHorizontalRuler = false;
        }
Unplanned
Last Updated: 08 May 2023 13:13 by Helen
Rotating a large image causes OutOfMemoryException.
Unplanned
Last Updated: 17 May 2017 15:41 by ADMIN
A custom list applied to several paragraphs is not exported to HTML format with the required font-family and font-size.

Steps to reproduce:
1. Create a custom list with custom font-size and custom font-family. (different from the default).
2. Apply the list to several paragraphs.
3. Set the StylesExportMode property of the ExportSetting of the HtmlFormatProvider to StylesExportMode.Inline (fp.ExportSettings.StylesExportMode = StylesExportMode.Inline)
4. Export to HTML.

Actual: The bullets are exported with the default font-family Verdana and the default font-size.
Expected:  The bullets to be exported with the custom value for the font-family and font-size.
Unplanned
Last Updated: 15 May 2017 12:34 by ADMIN
Undoing the action could lead to InvalidCastException, NullReferenceException, and other unexpected behaviors in next interactions with the document.

When the users didn't create a selection but rely on the caret position, the command creates selection on the current inline layout box internally. The selection's end position is on the range end, but it (the end) is not included in the actual selection. When the users try to undo, the range end is missing, which leads to incorrect visualization and different exceptions depending on the actions (when saving the document, when deleting the content, etc.).

Workaround: In CommandExecuting, check whether the selection is empty and create one if so. If the selection's end position is on an annotation range end, move the position to the next one. Clear the selection on CommandExecuted. Code is attached.
Unplanned
Last Updated: 09 May 2017 15:20 by ADMIN
Changing the IsEnable property of the document history should clear the undo and redo. Executing undo or redo over a document with changed structure will result in an invalid document.

Steps to reproduce:
1. Add text to the RadRichTextBox.
2. Disable the document history.

Expected: The undo and redo are cleared.
Actual: the undo is not cleared and the MultipleUndoControl contains all changes.
Completed
Last Updated: 17 Jul 2017 06:44 by ADMIN
The redo command can't be executed if a content outside of a  permission range is selected. For comparison, the undo command can be executed.

Steps to reproduce:
1. Add two paragraphs to the document with text.
2. Select the first paragraph and add permission range.
3. Protect the document.
4. Add text into the permission range.
5. Press Undo (Ctrl+Z).
6. Select text outside of the permission range.
7. Press Redo (Ctrl+R).

Expected: the redo action should be executed.

Fix available in LIB Version 2015.2.515.
Unplanned
Last Updated: 15 May 2023 11:46 by Pedro
XamlFormatProvider: OutOfMemoryException when importing a document in Windows Server 2012 environment.
Completed
Last Updated: 19 May 2017 12:44 by ADMIN
The focus stays in the combo box.

Workaround: Attach to the DropDownClosed event of the combo box and focus the presenter:
(this.radRichTextBox.ActiveEditorPresenter as Telerik.Windows.Documents.UI.DocumentWebLayoutPresenter).Focus();

Fix available in LIB Version 2017.2.522.
Unplanned
Last Updated: 24 May 2023 12:09 by ADMIN
If the margins of one side are equal to the default value, it will become 0 after import

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: 29 May 2023 04:42 by Swapnil
Editing after selecting the end of the line removes the line break. In Word, the line break (paragraph) is preserved. 
Unplanned
Last Updated: 10 Apr 2017 12:39 by ADMIN
When the span properties are modified (e.g. a highlight color is applied), they should not affect the span properties of the text inserted after that.

This applies for all span properties. Here are a part of them:

- Highlight color

- Foreground color

- Font weight

- Font family

- Font style

Currently, all the properties applied to the current span are inherited when the user starts typing next to it.
Unplanned
Last Updated: 06 Jun 2023 06:03 by Deltaohm
Exporting field with code ending with curly bracket trims it.
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. 
Completed
Last Updated: 13 Apr 2017 08:31 by ADMIN
XamlParseException is thrown when importing revision date time of track changes which is exported with different than invariant culture.

Steps to reproduce: 
Set the current thread culture to "new CultureInfo("nb-NO")"
Turn on track changes.
Start the RTB and enter some text.
Export to XAML.
Import the previously exported XAML file.
Observed result:  XamlParseException is thrown when parsing the revision date time object.



Available in LIB version: 2017.1.418
Declined
Last Updated: 18 Oct 2018 15:13 by ADMIN
When the user enter text using the keyboard the PositionChanged event of the CaretPosition is not fired.
The item's status changed to Declined - the LocationChanged event can be used to track when the location of the position has been changed.
Completed
Last Updated: 16 Feb 2018 08:56 by ADMIN
There is not defined behavior of tables without fixed column width in FlowNoWrap. They try to fill the unlimited space, so only tables with fixed width can be used in this mode. The expected behavior might be fitted column width to its content or auto fitted table width to window.

This can cause a hang of the application or unexpected behavior while working with the table (e.g. the thumbs for resizing the column width appear after the column border instead over it).

Workaround: Subscribe to CommandExecuted, get the inserted table and set a fixed width to it.

Available in R1 2018 SP2 release version.
Unplanned
Last Updated: 05 Apr 2017 10:10 by ADMIN
MS Word clears the character style property of a span when a new value equal to the default value is applied. This is applicable only when the span or the parent paragraph does not have associated style which has a local property defined for the same style property.
Completed
Last Updated: 16 May 2019 13:51 by ADMIN
In some cases when an image is copied from an external source and pasted in the rich text box, the image is not displayed. This is caused by the Clipboard.GetImage() method used internally by the control. 

To work this around, you can subscribe for the CommandExecuting event of RadRichTextBox and manually get the image from the clipboard.

private void Rtb_CommandExecuting(object sender, Telerik.Windows.Documents.RichTextBoxCommands.CommandExecutingEventArgs e)

{
	PasteCommand command = e.Command as PasteCommand;
	if (command != null && (Clipboard.GetData("DeviceIndependentBitmap") != null))
	{
		//Get the image stream from the clipboard.
		//You can check the following blog post for an approach which you can use to get the image properly:
		//https://www.thomaslevesque.com/2009/02/05/wpf-paste-an-image-from-the-clipboard/
		this.radRichTextBox.InsertImage(imageStream, "jpeg");
		e.Cancel = true;
	}
}	
Won't Fix
Last Updated: 31 Jul 2023 13:51 by ADMIN
Highlighted text's color is set to gray when saving and reopening the file.