Completed
Last Updated: 01 Jul 2021 07:24 by ADMIN
Release LIB 2021.2.531 (31/05/2021)
Run-time modifications on RadDocument may cause application freeze. It seems that the issue is caused by a deadlock in caret time logic.
Completed
Last Updated: 19 May 2021 14:49 by ADMIN
Release LIB 2021.2.525 (25/05/2021)

In the Track Change mode, try to insert several images using standard InsertPictureCommand (or even Editor.InsertImage()) double enter and then again. Or insert text between already inserted images.

The error could be also observed when accepting all changes.

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(), "");
    }

 
Completed
Last Updated: 20 May 2021 10:27 by ADMIN
Release LIB 2021.2.525 (25/05/2021)

The pasted content is not formatted properly, resulting in an InvalidOperationException("'Token EndElement in state EndRootElement would result in an invalid XML document. Make sure that the ConformanceLevel setting is set to ConformanceLevel.Fragment or ConformanceLevel.Auto if you want to write an XML fragment. ') when saving the content to DOCX.

Steps to reproduce:

  • Create a document
  • Activate Review/Change Tracking
  • Create a table in a separate MS Word file and add some text at least in the first cell
  • Copy from MS Word and paste it as the first element in the document
  • Save the document as an MS Word document

Workaround: intercept the table paste and add an empty paragraph as the first element of the document before the table.

Another case:

  • Create a new document
  • Be sure that Change Tracking is deactivated
  • Create a table in a separate MS Word file and add some text at least in the first cell
  • Copy from MS Word and paste it as the first element in the document
  • Activate Review/Change Tracking
  • Just after the first table, paste the table again: the second table seems to be merged with the first table, with no paragraph in between, but with the vertical line in the margin showing that the second table has change tracking
  • Save the document as a MS Word document
Completed
Last Updated: 28 May 2021 12:55 by ADMIN
Release LIB 2021.2.525 (25/05/2021)

Steps to reproduce: 

  • In MS Word, create a table with text in every cell
  • In the RadRichTextBox, create a new document
  • Activate Review/Track Changes
  • Copy and paste the table from MS Word: only the first cell has change tracking markup
  • Insert a paragraph after the first table and paste the table again: now, none of the cells has change tracking markup
Completed
Last Updated: 21 May 2021 06:41 by ADMIN
Release LIB 2021.2.525 (25/05/2021)
The images of the buttons for changing the layout are missing from RadRichTextBoxStatusBar in the .NET Core version of RadRichTextBox.
Unplanned
Last Updated: 17 May 2021 08:23 by ADMIN
Inner row and cell borders are not respected when importing table with specific borders
Completed
Last Updated: 25 May 2021 05:19 by ADMIN
Release LIB 2021.2.525 (25/05/2021)
The error message: Error XDG0041 The property "RulerThumbType" is not a DependencyProperty. To be used in markup, non-attached properties must be exposed on the target type with an accessible instance property "RulerThumbType". For attached properties, the declaring type must provide static "GetRulerThumbType"  and "SetRulerThumbType" methods.
Completed
Last Updated: 19 May 2021 13:37 by ADMIN
Release LIB 2021.2.525 (25/05/2021)
PdfExport: InvalidOperationException: 'Nullable object must have a value.'
Completed
Last Updated: 29 Apr 2021 12:44 by ADMIN
Release R2 2021
It seems to be related to a race condition when two or more threads access this method.
Unplanned
Last Updated: 17 May 2021 13:01 by ADMIN
Created by: Petar
Comments: 0
Category: RichTextBox
Type: Bug Report
0

Currently, there is a DocumentHistory property IsEnabled indicating whether the history for the RadDocument is enabled. This property is not working and history cannot be disabled.

Workaround:

Use DocumentHistory Clear() method by attaching to editor's CommandExecuted event.

 

        private void Editor_CommandExecuted(object sender, Telerik.Windows.Documents.RichTextBoxCommands.CommandExecutedEventArgs e)
        {
            editor.Document.History.Clear();
        }

 

Unplanned
Last Updated: 19 Apr 2021 15:37 by ADMIN
When asynchronous text insertion is enabled a wrong text position is occasionally observed.

A possible workaround: Create a custom Caret (check CustomCaret SDK example) and set its EnableAsynchronousTextInsertion property to false.
Completed
Last Updated: 16 Feb 2022 11:59 by ADMIN
Release R1 2022 SP1
Created by: Tomas von Peltzer
Comments: 0
Category: RichTextBox
Type: Bug Report
0
The client application hangs while reading a document containing a diagram inside. Internally, multiple OutOfMemoryException and InvalidOperationException errors are thrown.
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: 22 Apr 2021 09:27 by ADMIN
Release LIB 2021.1.426 (26/04/2021)
Memory leak when in ContentControlsPositionManager when showing the field's results and codes
Unplanned
Last Updated: 05 Apr 2021 10:04 by ADMIN
Wrong indexing when export the list override index ("\ls") THe index should start from 1 not from 2 or 3
Completed
Last Updated: 06 Apr 2021 11:03 by ADMIN
Release LIB 2021.1.412 (12/04/2021)
When importing an image with а missing bitmap frame and trying to create a BitmapImage for it, the BitmapImage class throws an exception.
Unplanned
Last Updated: 28 Mar 2021 07:21 by ADMIN

When the Track Changes is On and we try to change the style it applies the first time but the second try throws an exception and the style doesn't apply: System.ArgumentNullException: 'Value cannot be null. Parameter name: owner'.

1. Add new text "TEST".
2. Select the text and set a new style "Heading 2", then "Heading 1".
Observed: Heading 1 doesn`t appear.

Unplanned
Last Updated: 28 Mar 2021 06:55 by ADMIN

When the Track Changes is activated, a Hyperlink is inserted to a text and we try to reject changes the rejection is not applied correctly.

The result:

Completed
Last Updated: 07 Oct 2021 07:50 by ADMIN
Release LIB 2021.3.1011 (11 Oct 2021)
Setting IsPrimary to false should make styles disappear from the ribbon style gallery. In the current version this behavior gets broken as soon as styles are initially loaded.