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.

Unplanned
Last Updated: 14 Jul 2023 09:09 by Adam
Implement support for 'content' CSS property.
Unplanned
Last Updated: 18 Jul 2023 13:13 by ADMIN

Is there a way to prevent font embedding in the RadFlow methodology or is utilizing RadFixed the only way to have a reasonably sized PDF document?

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.
Unplanned
Last Updated: 06 Jul 2023 06:29 by Christian
Introduce support for languages in the document styles. 
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: 05 Jul 2023 13:12 by Fubin
Table columns are not the expected width after export while having large cropped images as content and all table content is resized. The input document's images are not resized and are too big to fit on the table and thus are cropped. 
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);

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: 21 May 2024 08:26 by ADMIN
AngleSharp.Dom.DomException when importing a file with CSS style that starts with ".\!".
Declined
Last Updated: 29 May 2023 10:51 by ADMIN
The Footer's size is sometimes not respected.
Unplanned
Last Updated: 29 May 2023 10:01 by Paul Squance

The Spacing Before property of the paragraph at the start of the page should not be respected if it is not the first one inside the current section.

Manually overriding the Spacing Before property would resolve the issue.

Completed
Last Updated: 05 Jul 2023 08:14 by ADMIN
Release R2 2023 SP1
PdfFormatProvider: NullReferenceException when exporting bookmarks spanning more than one paragraph.
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.
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: 25 May 2023 13:29 by ADMIN

Updating a Table of Contents field with a custom TOC Style does not respect it.

As a workaround modify the style after the TOC fields are updated.