Declined
Last Updated: 17 Dec 2025 11:52 by ADMIN
Content is moved from the second page to the first after applying styling to the footer and exporting to PDF format
Declined
Last Updated: 17 Dec 2025 07:49 by ADMIN

The issue is reproducible only in a specific setup with a specific document. It is related to the calculations of the line spacing when the table row should be split between two pages. Workaround: Change the line spacing:

foreach (var paragraph in this.document.EnumerateChildrenOfType<Paragraph>())
{
    paragraph.Properties.LineSpacingType.LocalValue = HeightType.Auto;
    paragraph.Properties.LineSpacing.LocalValue = 1;
}

Completed
Last Updated: 16 Dec 2025 16:45 by ADMIN
HtmlFormatProvider: NullReferenceException is thrown when exporting a document that contains styles with no ParagraphMarkerProperties.
Declined
Last Updated: 16 Dec 2025 15:17 by ADMIN
This is caused by hasSize field in ShapeBase class which is set when decoding the image size. However, when SetWidth and SetHeight methods are called before the size is initialized the value of hasSize is false which causes the issue.

Workaround: Call the Size property getter before calling SetWidth/SetHeight method. See the code below:

// This line workarounds the issue with SetWidth method which does not get the correct size when locking aspect ratio. 
Size size = imageInline.Image.Size;
imageInline.Image.SetWidth(true, width);
Declined
Last Updated: 16 Dec 2025 08:05 by ADMIN
Currently empty paragraphs are exported to HTML with one space inside. Such paragraphs are not rendered by the browser. Such paragraph should be exported to HTML with one non-breaking space (@nbsp;) inside to ensure that they are visible in the browser.

Workaround: manually add nbsp-s in all empty paragraphs:
paragraph.Inlines.AddRun("\u00a0");


Steps to reproduce:
- Create document with empty paragraphs:

                        var document = new RadFlowDocument();
                        Section section = document.Sections.AddSection();
                        section.Blocks.AddParagraph();
                        section.Blocks.AddParagraph();
                        section.Blocks.AddParagraph();
                        section.Blocks.AddParagraph().Inlines.AddRun("test");

- Export it to HTML.

- Load the HTML in a browser.

Expected: The word 'test' is preceded by 3 empty rows.

Actual: The word 'test' is on the first row.
In Development
Last Updated: 05 Dec 2025 14:42 by ADMIN
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: 05 Dec 2025 08:35 by David
PdfFormatProvider: Incorrect column width for tableGrid tables with merged cells.
In Development
Last Updated: 04 Dec 2025 13:29 by ADMIN
Tab stop distances are not calculated correctly during PDF export if a hanging indent is applied.
Declined
Last Updated: 27 Nov 2025 09:55 by ADMIN
NotSupportedImageFormatException is thrown during DOCX to PDF conversion in Linux.
Unplanned
Last Updated: 27 Nov 2025 08:49 by Petter

HtmlFormatProvider: Styles are not correctly preserved when a <b> tag is applied to the same styled element.

Workaround: Apply bold through CSS instead of using <b>.

Completed
Last Updated: 12 Nov 2025 14:56 by ADMIN
Release 2025.3.1007

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

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

Completed
Last Updated: 12 Nov 2025 14:51 by ADMIN
Release 2025.3.1007
Completed
Last Updated: 12 Nov 2025 11:41 by ADMIN
Release 2025.4.1104 (2025 Q4)
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.
Completed
Last Updated: 12 Nov 2025 11:41 by ADMIN
Release 2025.4.1104 (2025 Q4)

Hyperlinks with fragment identifiers are not resolved correctly.

Example:

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

Completed
Last Updated: 12 Nov 2025 11:41 by ADMIN
Release 2025.4.1104 (2025 Q4)
Left indents with floating point values are imported as "0".
Completed
Last Updated: 12 Nov 2025 11:41 by ADMIN
Release 2025.4.1104 (2025 Q4)

InvalidOperationException when cloning a document containing fields spanning multiple paragraphs.

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

Completed
Last Updated: 12 Nov 2025 11:41 by ADMIN
Release 2025.4.1104 (2025 Q4)

 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");

 

Completed
Last Updated: 12 Nov 2025 11:41 by ADMIN
Release 2025.4.1104 (2025 Q4)

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.
1 2 3 4 5 6