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. 
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.
Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
Release R1 2023
When exporting Run fonts (<rFonts>) the East Asian Font attribute (<eastAsia>) is not supported.
Completed
Last Updated: 10 Oct 2022 08:54 by ADMIN
Release LIB 2022.3.1010 (10 Oct 2022)
The highlight text button in the ribbon has an invalid icon 
Completed
Last Updated: 04 Oct 2022 13:33 by ADMIN
Release LIB 2022.3.1010 (10 Oct 2022)
Internal exception of type NullReferenceException is thrown when the field has an empty code fragment.
Completed
Last Updated: 10 Nov 2022 06:28 by ADMIN
Release LIB 2022.3.1017 (17 Oct 2022)

The scenario:

We have a document with text inside and we are executing the following steps:

  1. Mouse left button down.
  2. Select part of the text.
  3. Replace the selection with new text programmatically (the text should be with a different length).
  4. Release the left button.

Observed: Before releasing the mouse button the cursor position is correct but after releasing it the cursor position is changed to the initial selection end.

Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
Release R3 2022 SP1
RichTextBox: Add Word like selection where the entire word is selected when moving forward. When moving backward only the characters are deselected. 
Completed
Last Updated: 14 Feb 2022 08:17 by ADMIN
Release LIB 2022.1.214 (14 Feb 2022)
The HTML is not properly escaped and the writer throws InvalidOperationException.
Completed
Last Updated: 17 Dec 2021 14:01 by ADMIN
Release LIB 2021.3.1220 (20 Dec 2021)
Spans containing complex script text are styled using the iCs and bCs elements for font style and font-weight. DocxFormatProvider currently doesn't export them, leading to incorrect styling when the document is opened in MS Word.
Completed
Last Updated: 08 Dec 2021 10:56 by ADMIN
Release LIB 2021.3.1213 (13 Dec 2021)
RichTextBox: Expose a way so one can access the text of the shape via the public API.
Completed
Last Updated: 24 Aug 2021 14:13 by ADMIN
Release LIB 2021.2.830 (30 Aug 2021)
Watermark position is not correct when using multiline text
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: 15 Sep 2021 12:59 by ADMIN
Release R3 2021
Created by: Martin
Comments: 0
Category: RichTextBox
Type: Feature Request
1
Add support for text containers in Shapes. Including, text formatting, editing, and placement options.
Completed
Last Updated: 09 Feb 2021 15:51 by ADMIN
Release LIB 2021.1.215 (15/2/2021)
Created by: Ralf
Comments: 0
Category: RichTextBox
Type: Feature Request
0
When trying to export a document containing an ".ico" image to DOCX or RTF an exception is thrown.
Completed
Last Updated: 16 Sep 2020 12:47 by ADMIN
Release R3 2020
Some customers need special annotations to determine that the content between them should not be spell checked and they should/shouldn't be treated as word separators.
Completed
Last Updated: 20 May 2021 14:13 by ADMIN
Release LIB 2021.2.525 (25/05/2021)
Expose property allowing the customers to show the popup without transparency.
Completed
Last Updated: 14 Feb 2020 11:37 by ADMIN
Release R1 2020 SP1
The Popup needs to be triggered to recalculate its position.

The following fixes the issue in PasteOptionsPopup.cs
 
        private bool SetLocation(Point location)
        {
            if (this.HorizontalOffset != location.X || this.VerticalOffset != location.Y)
            {
                this.HorizontalOffset = location.X;
                this.VerticalOffset = location.Y;
                return true;
            }
            // added the following 5 lines to trigger the popup to recalculate it's location
            else
            {
                this.VerticalOffset++;
                this.VerticalOffset--;
            }
            return false;
        }
Completed
Last Updated: 20 Aug 2018 08:16 by ADMIN
After performance investigation related to feedback item http://feedback.telerik.com/Project/143/Feedback/Details/171108 , one bottleneck was identified as redundant calls to internal methods for getting parent of a document element.

Available in LIB Version 2018.2.820.
Completed
Last Updated: 24 Aug 2017 10:52 by ADMIN
There is no translation in the different languages.

Available in LIB Version 2017.2.828.
Completed
Last Updated: 19 Jun 2017 12:49 by ADMIN
The InsertTable command should copy the current style to all paragraphs in the new table.
1 2 3