Completed
Last Updated: 18 May 2023 07:19 by ADMIN
Release R2 2023
Mail merge does not work if the template contains a Table Of Contents
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.
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: 18 Apr 2023 09:31 by Blas
The paragraph style is not resolved correctly when importing dot template and replacing content
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: 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);
Completed
Last Updated: 19 Jun 2023 07:07 by ADMIN
Release LIB 2023.2.619 (19 Jun 2023)
ArgumentOutOfRangeException: "Index was out of range" when inserting a table right after an empty paragraph.
Unplanned
Last Updated: 28 Jun 2023 09:49 by Fubin

When a document has a list in it and the element containing it is cloned into another document, there is a key not found exception if you try to export the second document.

            RadFlowDocument document = new RadFlowDocument();
            if (tableDocument.Sections.First().Blocks.First() is Table workSheetTable)
            {
                Table clonedTable = workSheetTable.Clone(document);
                var newSection = document.Sections.AddSection();
                newSection.Blocks.Add(clonedTable);
            }

            byte[] pdfBytes = pdfProvider.Export(document);
            byte[] docBytes = docxProvider.Export(document);

Unplanned
Last Updated: 06 Jul 2023 06:23 by Pavel
Add support for importing of width property of <p> and <div> elements.
Unplanned
Last Updated: 06 Jul 2023 06:29 by Christian
Introduce support for languages in the document styles. 
Completed
Last Updated: 19 Sep 2023 07:23 by ADMIN
Release R3 2023
Exporting a document to PDF throws a System.ArgumentException: 'Width and Height must be non-negative.' The line height property is calculated to less than zero.
Completed
Last Updated: 28 Aug 2023 12:15 by ADMIN
Release R3 2023
When border styles are both set inline and in CSS they are wrongly evaluated.

Completed
Last Updated: 08 Sep 2023 12:44 by ADMIN
Release R3 2023
Created by: Fabien
Comments: 1
Category: WordsProcessing
Type: Feature Request
1
Introduce support for importing documents with nested runs.
Completed
Last Updated: 08 Sep 2023 12:43 by ADMIN
Release R3 2023
Introduce support for importing documents with fields inside of runs.
Unplanned
Last Updated: 14 Aug 2023 12:04 by Ray
Arabic Letter Mark (ALM) is a non-printing character but is visible after PDF export.
Completed
Last Updated: 08 Sep 2023 12:33 by ADMIN
Release R3 2023
A table cell with a dark background is always exported with a white foreground.
Unplanned
Last Updated: 12 Sep 2023 08:00 by Akesh Gupta
Created by: Akesh Gupta
Comments: 0
Category: WordsProcessing
Type: Bug Report
1

Nested Mail Merge cannot handle empty lists.

Workaround: Replace the empty list with null.

Unplanned
Last Updated: 14 Sep 2023 09:08 by Stefano
Incorrect measurement of spaces when they have a set size.
Unplanned
Last Updated: 11 Oct 2023 10:34 by Simon

Merge field group in a single table cell causes it to replicate more times than expected.

Workaround: add a second column to the table and move the TableEnd/GroupEnd/EndGroup/RangeEnd merge field inside it.

Unplanned
Last Updated: 12 Oct 2023 12:14 by Simon
Add a mechanism to replicate the whole row when nested mail merge is executed on a table with only one column.