Completed
Last Updated: 01 Jul 2021 14:16 by ADMIN
Release LIB 2021.2.705 (05 Jul 2021)
 Memory leak when loading a new document more than 20 times. The issue is introduced in version 2021.2.511.
Unplanned
Last Updated: 08 Jul 2021 11:05 by Andrii
Unicode hex character code "​" is not rendered correctly 
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.
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: 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: 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
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: 10 Jun 2021 11:18 by ADMIN
Release R2 2021 SP1
RichTextBox: Exceptions when importing multiple docx files simultaneously 
Completed
Last Updated: 10 Jun 2021 11:21 by ADMIN
Release R2 2021 SP1
Using InsertFragment to insert a table tracks only the table contents.
Declined
Last Updated: 21 Mar 2022 14:38 by ADMIN
Created by: ①Dr Mostafa
Comments: 2
Category: RichTextBox
Type: Bug Report
0
Memory leak when editing RadRichTextBox that has a header and/or footer containing table that contains FloatingImageBlock and/or ImageInline
Completed
Last Updated: 09 Jun 2021 09:54 by ADMIN
Release R2 2021 SP1

Try the following scenario:

  • In MS Word, create a table with text in every cell
  • In the RadRichTextBox, create a new document
  • Activate Review/Track Changes
  • Add some empty paragraphs or some text: change tracking markup will be displayed
  • Just after the inserted text, copy and paste the table from MS Word: none of the cells has change tracking markup
  • If you type inside the table, the new text has markup, but the text that was pasted with the table has no markup.
  • If you use the right arrow on the keyboard to exit the change tracking tag, then if you paste the table, it seems to work correctly.
Unplanned
Last Updated: 29 Sep 2020 08:01 by ADMIN
The text-indent property is not properly imported when set on a list item 
Completed
Last Updated: 29 Sep 2020 12:08 by ADMIN
Release LIB 2020.3.1005 (05/10/2020)

Here we are:

            HtmlFormatProvider htmlProvider = new HtmlFormatProvider();
            htmlProvider.ExportSettings.StylesExportMode = StylesExportMode.Inline;

            string _html =
                @"
                <html>
                <head>
                <meta http-equiv=""Content-Type"" content=""text/html; charset=utf-8"">
                </head>
                <body>
                <div name=""divtagdefaultwrapper"" style=""font-family:Calibri,Arial,Helvetica,sans-serif; font-size:; margin:0"">

                <div class=""WordSection1"">
                <p class=""MsoNormal"" style=""text-autospace:none"">
                <span style=""font-size:11pt; color:rgb(31,73,125)"">
                            I am out of office, please contact Aaaaaa Bbbbbbb (Tel: &#43;1-234-567-8900/email:
                <a href=""mailto:aaaaaa.bbbbbb@zzz.com"">aaaaaa.bbbbbb@zzz.com</a>) for assistance
                </span>
                </p>
                </div>
                </div>

                </body>
                </html>
                ";

            RadDocument _doc = htmlProvider.Import(_html); 
            radRichTextBox.Document = _doc;

And here is an exception:

 

System.NullReferenceException
  HResult=0x80004003
  Message=Object reference not set to an instance of an object.
  Source=Telerik.Windows.Controls.RichTextBox
  StackTrace:
   at Telerik.Windows.Documents.FormatProviders.Html.Import.HtmlDocumentImporter.FillSpanProperties(SpanProperties spanProps, EvaluateProperty evalFunction, IEnumerable`1 disregarderdDefaultStyleBagPropertiesCollection)
   at Telerik.Windows.Documents.FormatProviders.Html.Import.HtmlDocumentImporter.CreateSpanFromTextNode(INode childNode, Paragraph paragraph, IEnumerable`1 disregarderdDefaultStyleBagPropertiesCollection)
   at Telerik.Windows.Documents.FormatProviders.Html.Import.HtmlDocumentImporter.ProcessContentNode(INode node)
   at Telerik.Windows.Documents.FormatProviders.Html.Import.HtmlDocumentImporter.<>c__DisplayClass79_0.<ProcessNode>b__0()
   at Telerik.Windows.Documents.FormatProviders.Html.Import.HtmlDocumentImporter.ProcessNode(INode node)
   at Telerik.Windows.Documents.FormatProviders.Html.Import.HtmlDocumentImporter.ProcessGenericNode(INode node)
   at Telerik.Windows.Documents.FormatProviders.Html.Import.HtmlDocumentImporter.<>c__DisplayClass79_0.<ProcessNode>b__0()
   at Telerik.Windows.Documents.FormatProviders.Html.Import.HtmlDocumentImporter.ProcessNode(INode node)
   at Telerik.Windows.Documents.FormatProviders.Html.Import.HtmlDocumentImporter.ProcessGenericNode(INode node)
   at Telerik.Windows.Documents.FormatProviders.Html.Import.HtmlDocumentImporter.<>c__DisplayClass79_0.<ProcessNode>b__0()
   at Telerik.Windows.Documents.FormatProviders.Html.Import.HtmlDocumentImporter.ProcessNode(INode node)
   at Telerik.Windows.Documents.FormatProviders.Html.Import.HtmlDocumentImporter.Import(Stream input)
   at Telerik.Windows.Documents.FormatProviders.Html.HtmlFormatProvider.Import(Stream input)
   at Telerik.Windows.Documents.FormatProviders.Html.HtmlFormatProvider.Import(String input)
   at WpfTest.MainWindow.ButtonTest_OnClick(Object sender, RoutedEventArgs e) in C:\Users\mosvk\Source\Workspaces\Bm.Extensions\test\WpfTest\MainWindow.xaml.cs:line 191

 

       
Completed
Last Updated: 06 Oct 2020 14:12 by ADMIN
Release LIB 2020.3.1012 (12/10/2020)
When pasting a copied image with Keep Text Only paste option an exception is thrown (check the attached record.gif)
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: 25 Sep 2020 09:07 by ADMIN
 HTML saved in Word and then imported contains question marks instead of dashes. It seems that the encoding is not correctly parsed.
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);
Completed
Last Updated: 05 Oct 2020 13:54 by ADMIN
Release LIB 2020.3.1012 (12/10/2020)
Pressing 'a'+Enter simultaneously while in Japanese IME leads to en exception with the following message: Value cannot be null. Parameter name: insertIMETextCommandContext.
Unplanned
Last Updated: 26 Aug 2020 06:49 by ADMIN

In a specific scenario when there are many tables in a document the following case leads to NullReferenceException.

 - Select few tables 
 - while mouse is still selecting tables use keyboard's Ctrl + A
 - Leave the mouse 
 - use Ctrl + A again (this time everything is selected)
 - hit Delete
 - Object reference not set to an instance of an object is thrown

Unplanned
Last Updated: 07 Aug 2020 11:29 by ADMIN
On-screen keyboard disappears most of the time when using touch monitor to type.