Completed
Last Updated: 02 Aug 2021 08:21 by ADMIN
Release R3 2021
The exception is thrown at Telerik.Windows.Documents.Core.Data.ValueMapper`2.GetToValue(TFrom value) with message 'System.InvalidOperationException: 'Not supported from value: 16''
Completed
Last Updated: 13 Jul 2021 14:50 by ADMIN
Release R3 2021

When exporting a document containing a Field that has no Separator set the content after this field is omitted.

According to the OOXML Specification, the fldCharType value separate is optional. 

Unplanned
Last Updated: 02 Jul 2021 06:18 by ADMIN
The line-height of the paragraph should be applied to the spacing before and after as well.
Unplanned
Last Updated: 01 Jul 2021 13:03 by ADMIN
The styles that are declared inside the body selector should be applied to the whole document content if another styling is not specified. However, during the import, HtmlFormatProvider doesn't respect these definitions.
Unplanned
Last Updated: 01 Jul 2021 08:12 by ADMIN
Line-height of the spans is not imported when converting Html to Docx
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.

 

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'
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}
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}
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: 01 Jun 2021 08:22 by ADMIN

When we have Document properties set (no Section properties set) and the \sectd control word is missing the Document properties are not respected.

From the RTF Specification: When we have Section properties set the \sectd resets the values to that specified by the Document properties. But when we don't have Section properties set and the \sectd is missing we should inherit the values specified by the Document properties

Unplanned
Last Updated: 28 May 2021 07:23 by ADMIN
Created by: Oksana
Comments: 0
Category: WordsProcessing
Type: Feature Request
2
Provide support for import and export of Fields to HTML format.
Unplanned
Last Updated: 11 May 2021 10:45 by ADMIN
In the document produced by the mail merge, the general formatting applied is not respected and the value is in its default format. 
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
Unplanned
Last Updated: 10 May 2021 08:50 by ADMIN
Created by: Aymen
Comments: 0
Category: WordsProcessing
Type: Feature Request
0
This element represents a multi-line text input control and can be mapped to content control. 
Unplanned
Last Updated: 05 May 2021 07:18 by ADMIN
Created by: SAI RADHA MANI
Comments: 0
Category: WordsProcessing
Type: Feature Request
5
The SVG element allows drawing paths, boxes, circles, text, and graphic images in HTML document.
Unplanned
Last Updated: 28 Jun 2021 05:11 by ADMIN
Converting table with custom borders to PDF does not work
Unplanned
Last Updated: 30 Apr 2021 06:35 by ADMIN
The margin property sets the margins for an element, and is a shorthand property for the following supported properties:
margin-top
margin-right
margin-bottom
margin-left
Unplanned
Last Updated: 30 Apr 2021 06:09 by ADMIN
Currently, "none", "inline", and "block" values are supported. 

A full list of the property value options could be found here: CSS Display Property.
Unplanned
Last Updated: 30 Apr 2021 05:26 by ADMIN

Background properties do not inherit, but the parent element's background will shine through by default because of the initial 'transparent' value on 'background-color'.

HTML content:

<div style="background-color: gray; color: red">
Text outside the list
	<ul>
		<li>
			Text in the list
		</li>
	</ul>
</div>

The result when exported to DOCX/PDF:

Workaround: set the style directly to the <ul> element:

<div style="background-color: gray; color: red">
Text outside the list
	<ul style="background-color: gray;">
		<li>
			Text in the list
		</li>
	</ul>
</div>