In Development
Last Updated: 21 Oct 2025 07:51 by ADMIN
In Development
Last Updated: 21 Oct 2025 06:03 by ADMIN
Left indents with floating point values are imported as "0".
In Development
Last Updated: 20 Oct 2025 16:16 by ADMIN

 Replace cannot match whole word with special characters (e.g. "#", "@", "&") at the start/end.

Workaround (RegEx):

editor.ReplaceText(new Regex($"(?<=\\s|^|[\\c_]){placeholder}(?=\\s|$|[\\c_])"),"new content");

 

In Development
Last Updated: 20 Oct 2025 13:26 by ADMIN

InvalidOperationException when cloning a document containing fields spanning multiple paragraphs.

Workaround: instead of new paragraphs, use line breaks (Shift+Enter).

In Development
Last Updated: 20 Oct 2025 12:58 by ADMIN

Import a document that contains a picture content control and the following error occurs: 

Telerik.Windows.Documents.Flow.Model.Annotations.StructuredDocumentTags.Builders.SdtBuilderFailureException: 'Picture control cannot be used in selection that contains any non-image content, or more than a single image.'

Unplanned
Last Updated: 17 Oct 2025 15:03 by Mira
Created by: Mira
Comments: 0
Category: WordsProcessing
Type: Feature Request
1
Add support for Fields when exporting to TXT format. When a field is exported to *.txt, only the result should be exported (as in HTML). In the current implementation, the field characters, field code, and field result are all exported.
In Development
Last Updated: 17 Oct 2025 14:58 by ADMIN
Importing a DOCX file containing a footer with a content control that contains more than one paragraph leads to exporting an empty document without any errors indicating the problem.
In Development
Last Updated: 17 Oct 2025 14:30 by ADMIN

List's top and bottom margins are not correctly exported.

Workaround: Apply TelerikNormal style to the 'ol' element.

Unplanned
Last Updated: 17 Oct 2025 06:28 by Daniel
Created by: Daniel
Comments: 0
Category: WordsProcessing
Type: Feature Request
2
Optimize PDFs for quick viewing on the web, especially for mobile clients. Linearization allows your end users to view large PDF documents incrementally so that they can view pages much faster in lower bandwidth conditions: https://developer.adobe.com/document-services/docs/overview/pdf-services-api/howtos/linearize-pdf/ 
Completed
Last Updated: 10 Oct 2025 06:11 by ADMIN
Release 2025.3.1007 (2025 Q3)

 Tables should ignore fixed proffered width with the value of 0, this is the default behavior in Word as well.

Workaround (when converting Flow to PDF documents): 

foreach (var item in tables)
{
    if (item.PreferredWidth.Type == Telerik.Windows.Documents.Flow.Model.Styles.TableWidthUnitType.Fixed && 
        item.PreferredWidth.Value == 0)
    {
        item.PreferredWidth = new Telerik.Windows.Documents.Flow.Model.Styles.TableWidthUnit(Telerik.Windows.Documents.Flow.Model.Styles.TableWidthUnitType.Percent, 100);
    } 
  
    
}

Completed
Last Updated: 10 Oct 2025 05:58 by ADMIN
Release Q3 2025 (2025.3.806)
When accessing AngleSharp.Css.Values.CssShadowValue.CssText on import, an exception is thrown: System.Security.VerificationException: 'Operation could destabilize the runtime.'
In Development
Last Updated: 09 Oct 2025 13:35 by ADMIN

Hyperlinks with fragment identifiers are not resolved correctly.

Example:

https://docs.telerik.com/devtools/document-processing/libraries/radwordsprocessing/overview#key-features

In Development
Last Updated: 08 Oct 2025 08:43 by ADMIN
NotSupportedImageFormatException is thrown during DOCX to PDF conversion in Linux.
Unplanned
Last Updated: 01 Oct 2025 13:07 by Babu

When imported in the WordsProcessing model, the current HTML doesn't respect the defined column width and all columns have identical width:

    <colgroup>
        <col span="1" style="width: 33.3302%;">
        <col span="1" style="width: 17.5658%;">
        <col span="1" style="width: 49.104%;">
    </colgroup>

Observed result:

Expected result:

Workaround: use the width property as follows:

    <colgroup>
        <col span="1" width="33.3302%">
        <col span="1" width="17.5658%">
        <col span="1" width="49.104%">
    </colgroup>
Unplanned
Last Updated: 26 Sep 2025 09:01 by Monali
Created by: Monali
Comments: 0
Category: WordsProcessing
Type: Feature Request
0
Add support for Ink annotations (InkML).
Unplanned
Last Updated: 25 Sep 2025 09:01 by Paul
Tab stop distances are not calculated correctly during PDF export if a hanging indent is applied.
Unplanned
Last Updated: 15 Sep 2025 13:28 by Tibor
The "w:multiLine" property of a text content control is lost on import-export.
<w:sdt>
  <w:sdtPr>
    <w:text w:multiLine="1"/>
  </w:sdtPr>
  <w:sdtContent>
    <w:r>
      <w:t>Line 1</w:t>
    </w:r>
    <w:r>
      <w:br/>
    </w:r>
    <w:r>
      <w:t>Line 2</w:t>
    </w:r>
  </w:sdtContent>
</w:sdt>
Unplanned
Last Updated: 15 Sep 2025 13:07 by Tibor
Disappearing borders due to "w:val" property changing from "none" to "nil" on import-export.
1 2 3 4 5 6