Completed
Last Updated: 17 May 2023 06:56 by ADMIN
Release R2 2023

The measurements of the table cell are incorrect and an ArgumentException is thrown in TableCell.Draw when trying to create a rectangle with negative height: "Width and Height must be non-negative." 
 
Workaround (only in a specific scenario in which HTML content is merged into a TableCell): When HTML content is merged into a TableCell using InsertDocument() with ConflictingStylesResolutionMode=RenameSourceStyle, If the HTML or ConflictingStylesResolutionMod is changed, the exception is not thrown: ConflictingStylesResolutionMode.UseTargetStyle
Completed
Last Updated: 17 May 2023 06:44 by ADMIN
Release R3 2023

The image in the header is not exported to pdf.

Workaround: Use version R1 2022 where this is working.

 

Completed
Last Updated: 11 May 2023 13:31 by ADMIN
Release R2 2023
ADMIN
Created by: Deyan
Comments: 5
Category: WordsProcessing
Type: Feature Request
12

Currently some properties are supported only in their shorthand forms, and others - only in their longhand forms: - 'background' shorthand is not supported. - 'margin' shorthand is not supported.

- 'padding' shorthand is not supported. - 'border' shorthand is supported, but 'border-bottom-color', 'border-bottom-style', 'border-bottom-width', 'border-left-color', 'border-left-style', 'border-left-width', 'border-right-color', 'border-right-style', 'border-right-width', 'border-style', 'border-top-color', 'border-top-style', 'border-top-width', 'border-width' are not supported.

IMPORTANT: This feature is available in .NET Core, .NET 6 and above.

Completed
Last Updated: 08 May 2023 14:22 by ADMIN
Release R2 2023
When table row is empty, it's exported to PDF with incorrect height - depending on the type of height set with 0 or with the height of an empty paragraph.
Completed
Last Updated: 08 May 2023 14:18 by ADMIN
Release R2 2023

TableRow which has defined an only val attribute of the trHeight is imported as a row with auto height. By the specification, this is right, but MS Word takes the val value as row height. Also MS Word exports "At Least" row height with only 'val' set.

Workaround: Iterate through the table rows and set them HeightType to Exact or AtLeast:

foreach (var row in this.document.EnumerateChildrenOfType<TableRow>())
{
    row.Height = new TableRowHeight(HeightType.AtLeast, row.Height.Value);
}

Duplicated
Last Updated: 08 May 2023 12:03 by ADMIN
The last empty paragraph in the table cell is not imported.
Unplanned
Last Updated: 03 May 2023 12:29 by Michael

First Footer of a section overrides the First Footer of another section after the merge. After merging 'Parent' document (with a different First Footer which is empty) with 'Child' document (with explicitly set First Footer), the First Footer of 'Child' overrides the First Footer of 'Parent' after PDF export.

Workaround 1: Disable 'Child' document's 'HasDifferentFirstPageHeaderFooter' and clear its First Footer's value:

Telerik.Windows.Documents.Flow.Model.Section section = child.Sections.First();
section.HasDifferentFirstPageHeaderFooter = false;
section.Footers.First.Blocks.Clear();
Workaround 2: Keep 'HasDifferentFirstPageHeaderFooter' of the 'Child' document as it is, and set the FIrst Footer of the 'Parent' document explicitly:
parent.Sections.First().Footers.Add(HeaderFooterType.First);
Unplanned
Last Updated: 01 May 2023 11:49 by RRE

Line spacing is not preserved when exporting RTF to HTML and the lines are exported with the default line spacing.

Unplanned
Last Updated: 28 Apr 2023 14:01 by Amar Galla
Content loss on Import/Export while having <w:drawing> in <wp:inline> element. The contents within the <wp:inline> element are lost.
Completed
Last Updated: 27 Apr 2023 07:35 by ADMIN
Created by: Telerik Admin
Comments: 3
Category: WordsProcessing
Type: Bug Report
1
Header is not imported when it contains image
Unplanned
Last Updated: 18 Apr 2023 09:31 by Blas
The paragraph style is not resolved correctly when importing dot template and replacing content
Declined
Last Updated: 13 Apr 2023 08:28 by ADMIN
Created by: Rohit
Comments: 1
Category: WordsProcessing
Type: Feature Request
1
Is there any option to set line-height for text in RadFlowDocument Editor?
Unplanned
Last Updated: 07 Apr 2023 08:40 by yanjun
Respect the floating image wrapping style when inside a table and it is behind or in front of text.
Unplanned
Last Updated: 05 Apr 2023 10:13 by ADMIN
Created by: wowis
Comments: 0
Category: WordsProcessing
Type: Feature Request
0

Similar to https://feedback.telerik.com/reporting/1356710-rendering-to-xlsx-should-not-add-bom-to-xml-files :

DOCX files exported with DocxFormatProvider contain a BOM in every exported XML file. Some programs fail to load those DOCX files.

Please remove the BOM, or add a toggle in DocxExportSettings.

Completed
Last Updated: 31 Mar 2023 12:26 by ADMIN
Release R2 2023
NullReferenceException when importing a watermark with no opacity
Unplanned
Last Updated: 06 Mar 2023 09:12 by Margret
DocFormatpRovider: StackOverflowException when importing doc documents with particular paragraph properties.
Unplanned
Last Updated: 02 Mar 2023 15:55 by Jase
Table borders overlap and are not visible when set through the API for certain MS Word themes
Unplanned
Last Updated: 01 Mar 2023 15:45 by Selva
The text inside content controls that are part of a table cell is not exported correctly when replaced.
Completed
Last Updated: 27 Feb 2023 10:40 by ADMIN
Release R1 2023 SP1
Unplanned
Last Updated: 27 Feb 2023 07:29 by Nikko
When converting to pdf and the document contains a section break after a page break additional page is added