Unplanned
Last Updated: 11 Jun 2021 09:23 by ADMIN
Created by: Al
Comments: 0
Category: WordsProcessing
Type: Feature Request
1

Add support for all number switches.  More info is available here: Formatting fields with switches

Here are the switches that should be supported:

Amount \# $,0.00: {MERGEFIELD FirstAmount \# $,0.00}
Amount \# $#,###,###: {MERGEFIELD FirstAmount \# $#,###,###}
Amount \*CardText:  {MERGEFIELD \\*CardText}
Amount \*DollarText:  {MERGEFIELD \\*DollarText}
Integer \*alphabetic: {MERGEFIELD \\*alphabetic}
Integer \* ALPHABETIC: {MERGEFIELD FirstInteger \* ALPHABETIC}
Integer \* OrdText: {MERGEFIELD FirstInteger \* OrdText}
Integer \* Ordinal: {MERGEFIELD FirstInteger \* Ordinal}
Integer \* roman: {MERGEFIELD FirstInteger \* roman}
Unplanned
Last Updated: 11 Jun 2021 09:29 by ADMIN
Created by: Al
Comments: 0
Category: WordsProcessing
Type: Feature Request
1

Add support for Upper and Lower field switches  More info is available here: Formatting fields with switches

Here are the switches that should be supported:

First Name Upper: {MERGEFIELD FirstName \* Upper}
First Name Lower: {MERGEFIELD FirstName \* Lower}
Completed
Last Updated: 02 Aug 2021 07:09 by ADMIN
Release R3 2021
The exception is thrown at Telerik.Windows.Documents.Core.Data.ValueMapper`2.GetToValue(TFrom value) with message 'Not supported from value: numTab'
Completed
Last Updated: 01 Jul 2021 14:16 by ADMIN
Release LIB 2021.2.705 (05 Jul 2021)

When the data is set as double or float the Numeric formatting of the MergeField is not respected.

When the following merge field:

MERGEFIELD BAL  \# ###,0.00

is populated with 5.70F or 5.70D the result is 5.7 instead of 5.70.

 

Unplanned
Last Updated: 01 Jul 2021 08:12 by ADMIN
Line-height of the spans is not imported when converting Html to Docx
Unplanned
Last Updated: 28 Jul 2021 13:42 by ADMIN
In the current implementation, when the table and its cells don't define specific widths, they are automatically calculated according to the available space. This, however, might sometimes result in breaking whole words. The entirety of words should be preserved if that is possible in the concrete case.
Unplanned
Last Updated: 29 Jul 2021 14:24 by ADMIN
Num definition that follows another num definition and both share the same abstractNumId should continue the numbering. In the current version, the numbering is restarted. 
Unplanned
Last Updated: 05 Aug 2021 14:22 by ADMIN
Tables inside a single cell are not on one row when imported from HTML 
Completed
Last Updated: 24 Aug 2021 14:15 by ADMIN
Release R3 2021
NullReference exception when importing specific document.
Completed
Last Updated: 23 Oct 2021 17:16 by Tom
Release R3 2021 SP1
Implement options for setting hyperlink on an image and preserving it in import/export.
Unplanned
Last Updated: 08 Oct 2021 13:48 by ADMIN
Currently, WordsProcessing evaluates the result of any field to a string. However, there are cases when other document elements need to be added as a result of the field's evaluation. For example, IF fields can be evaluated in a table.
Completed
Last Updated: 25 Oct 2021 08:27 by ADMIN
Release R3 2021 SP1
When the col HTML elements don't have width attribute set, an ArgumentNullException is thrown during parsing the document.
Unplanned
Last Updated: 21 Oct 2021 15:24 by ADMIN
ADMIN
Created by: Tanya
Comments: 0
Category: WordsProcessing
Type: Feature Request
1
Currently, text can be replaced with other text, inlines, or blocks. However, the API doesn't provide an option for constructing hyperlinks and getting their inlines. Users can only insert hyperlinks directly through the editor. Expose overload enabling users to replace text with a hyperlink.

Unplanned
Last Updated: 16 Nov 2021 16:10 by ADMIN
Table cell width are not correctly resolved on export.
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.