Unplanned
Last Updated: 22 Mar 2021 10:30 by ADMIN
When importing or exporting a document with an invalid field structure, an exception is thrown. Add mechanism for handling that and skipping such fields so the other content can be imported.
Completed
Last Updated: 05 Apr 2021 10:13 by ADMIN
Release R2 2021

According to the RTF specification: The valid values for the "\ls" index are from 1 to 2000.

They are currently exported from zero or "\ls0".

Unplanned
Last Updated: 30 Mar 2021 05:33 by ADMIN

 An incorrect file is produced when merging a stream more than 40 times.

Workaround: A possible workaround could be to merge up to 40 times in one file, then continue merging in a new one, and finally merge the newly generated documents.

 

Unplanned
Last Updated: 21 Apr 2021 10:58 by ADMIN

When exporting a document containing a FloatingImage in the header/footer the measurement of the header/footer height doesn't take into account the height of this image.

This leads to overlapping the page content with the image.

Workaround: Increase the Header (or Footer) top page margin by the height of the image:

foreach (Section section in this.document.Sections)
{
	double floatingImageHeight = 0;
	foreach (BlockBase block in section.Headers.Default.Blocks)
	{
		if (block is Paragraph paragraph)
		{
			FloatingImage floatingImage = (FloatingImage)paragraph.Inlines.FirstOrDefault(i => i is FloatingImage);
			floatingImageHeight = floatingImage.Image.Height;
		}
	}

	double left = section.PageMargins.Left;
	double top = section.PageMargins.Top + floatingImageHeight;
	double right = section.PageMargins.Right;
	double bottom = section.PageMargins.Bottom;
	section.PageMargins = new Telerik.Windows.Documents.Primitives.Padding(left, top, right, bottom);
}

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
Completed
Last Updated: 20 May 2022 05:51 by ADMIN
Release R2 2022 SP1

When exporting to PDF a document containing Table merged into a TableCell an extra empty space below the inner table is added:

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.