Unplanned
Last Updated: 22 Nov 2021 11:33 by ADMIN
Unplanned
Last Updated: 23 Dec 2021 12:46 by ADMIN

The table is cut off when its width is larger than the default page width.

Workaround: 

var htmlProvider = new HtmlFormatProvider();
var document = htmlProvider.Import(File.ReadAllText(@"..\..\HTMLPage1.html"));

var tables = document.EnumerateChildrenOfType<Table>();
double maxWidth = document.Sections.FirstOrDefault().PageSize.Width;

foreach (var item in tables)
{
    if (item.PreferredWidth.Type == Telerik.Windows.Documents.Flow.Model.Styles.TableWidthUnitType.Fixed)
    {
        maxWidth = Math.Max(maxWidth, (item.PreferredWidth.Value + 100));
    }
}

foreach (var item in document.Sections)
{
    item.PageSize = new System.Windows.Size(maxWidth, item.PageSize.Height);
}

var pdfProvider = new PdfFormatProvider();
File.WriteAllBytes(@"..\..\result.pdf", pdfProvider.Export(document));

Completed
Last Updated: 08 Feb 2022 15:16 by ADMIN
Release R1 2022 SP1

When a field is formatted using the numberInDash format through the section's PageNumberingSettings, the format is not parsed and the field result is not included in the PDF document.

Workaround: Remove the formatting from the section settings:

foreach (var section in this.document.Sections)
{
    section.PageNumberingSettings.PageNumberFormat = null;
}

Completed
Last Updated: 08 Apr 2022 14:05 by ADMIN
Release LIB 2022.1.411 (11 Apr 2022)
RichTextBox: InvalidCastException when importing a file with a drawing containing NonVisualConnectorProperties
Completed
Last Updated: 02 Aug 2024 11:09 by ADMIN
Release 2024.3.802 (2024 Q3)
When parsing the text content of the document, hidden characters are included in the place of the fields, making the content different than expected.
Completed
Last Updated: 12 Apr 2022 15:07 by ADMIN
Release R2 2022
Floating images positioned outside of page borders are moved inside the page when converting to PDF.
Unplanned
Last Updated: 31 Mar 2022 07:21 by Sumair
The column with is not exported correctly when converting from HTML to DOCX
Unplanned
Last Updated: 21 Apr 2022 12:23 by Andy F.

WordsProcessing: Merging a RadFlowDocument document into the target document over around 130 times breaks formatting when the target document is an empty RadFlowDocument.

The workaround to this issue is to set the target document to an existing RadFlowDocument such as the source before merging.

Unplanned
Last Updated: 26 Apr 2022 06:01 by Marcin

To reproduce: 

-Change the normal style in a document and insert it into another document using RenameSourceStyle option.

The style is renamed and inserted but is not applied to the content.

Unplanned
Last Updated: 02 May 2022 09:18 by Mathew

Exporting RTF document to HTML when there is a multilevel numbered list, strips the numbers and leaves only the main number visible (e.g. 2.1 becomes 1). Also, the text overlaps the numbering. 

Workaround: Use numbers with letters instead of numbers only. (e.g. 1 a b c, 2 a b c).

Duplicated
Last Updated: 16 Jun 2022 06:39 by ADMIN
When the MergeField contains line breaks they are exported after all the runs in the paragraph.

Unplanned
Last Updated: 29 Jul 2022 11:15 by Mahendra
Allow performing a mail merge with a data table instead of just IEnumerable
Unplanned
Last Updated: 29 Aug 2022 10:45 by Ashish
Created by: Ashish
Comments: 0
Category: WordsProcessing
Type: Feature Request
1

Add support for the background tag: html - CSS color vs. background-color vs. background? - Stack Overflow

The background property might contain an actual image (it is not locked to color values).

Unplanned
Last Updated: 30 Aug 2022 05:47 by Xiao
Created by: Xiao
Comments: 0
Category: WordsProcessing
Type: Feature Request
1
Add support for importing shapes from RTF
Unplanned
Last Updated: 08 Sep 2022 11:14 by Andrew
Unplanned
Last Updated: 20 Sep 2022 14:06 by ADMIN
Shapes are currently skipped when exporting document content to HTML. Add logic to preserve them.
Unplanned
Last Updated: 29 Sep 2022 08:45 by Aleksander
When the table width is for example 22.7% it is rounded to 22% on import.
Unplanned
Last Updated: 05 Oct 2022 13:03 by James
Created by: James
Comments: 0
Category: WordsProcessing
Type: Feature Request
1
Add support for the basicThinLines border style
Completed
Last Updated: 15 May 2024 06:27 by ADMIN
Release 2024.2.426 (2024 Q2)
The text in the footer remains under the image while drawing the PDF content.
Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
Release R3 2022 SP1
When a document with a field is exported to html and the document has a field without a separator, part of the html is not exported.