Unplanned
Last Updated: 20 Apr 2021 11:04 by ADMIN

When the table is nested in another table with fixed-width and the nested one has more than one cell in the row, where the one has a preferred width set to auto and the other has content that split on more than one row, then the first cell is exported with a wrong width.

Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
Release R3 2022 SP1
Created by: SAI RADHA MANI
Comments: 1
Category: WordsProcessing
Type: Feature Request
0

You can add captions to figures, equations, or other objects.

From the Office Open XML File Formats Specification: This element specifies the contents and positioning for captions which can be used to automatically label objects in a WordprocessingML document. A caption is a string that labels an object included in a WordprocessingML document, and typically consists of a string plus a field which numbers this item within a collection of similar objects.

Similar functionality can be achieved using the CustomCodeField:

RadFlowDocumentEditor editor = new RadFlowDocumentEditor(document);
using (Stream stream = File.OpenRead("Image1.jpg"))
{
	ImageInline image = editor.InsertImageInline(stream, "jpg");
	editor.InsertBookmark("Image", image, image);
}

editor.InsertBreak(BreakType.LineBreak);
editor.InsertText("Figure ");
editor.InsertField("SEQ Image", "Update Figure Number");

Unplanned
Last Updated: 27 Apr 2021 08:30 by ADMIN
Import HTML where the image does not have a closing tag. Here are the valid closing ways: html - How to close <img> tag properly? - Stack Overflow
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>

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: 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: 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. 
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: 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: 02 Jul 2021 06:18 by ADMIN
The line-height of the paragraph should be applied to the spacing before and after as well.
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. 

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 Aug 2021 10:43 by ADMIN
Release LIB 2021.2.816 (16 Aug 2021)
KeyNotFoundException while exporting to HTML document containing single list whose first level has RestartAfterLevel=0.
Completed
Last Updated: 26 Aug 2021 12:53 by ADMIN
Release R3 2021

 Exception trying to import HTML that contains width with an empty value. For example:

<table width="">

Completed
Last Updated: 24 Aug 2021 14:49 by ADMIN
Release R3 2021
Wrong numbering position when a paragraph contains numbering in the style and a page break
Completed
Last Updated: 25 Aug 2021 13:57 by ADMIN
Release R3 2021
When the inline image has only a width set the image size is wrongly calculated when converting to PDF
Completed
Last Updated: 25 Aug 2021 12:36 by ADMIN
Release R1 2021
When importing HTML with image dimensions defined in inches, they are incorrectly recognized as being in pixels.
Unplanned
Last Updated: 27 Aug 2021 10:35 by ADMIN
Add support for Microsoft Office Word 2003 XML Format, WordProcessingML and WordML formats
Unplanned
Last Updated: 14 Sep 2021 09:37 by ADMIN
Exception when exporting empty table to HTML.
Completed
Last Updated: 21 Sep 2021 07:23 by ADMIN
Release R3 2021 SP1

When replacing a string within a run that is not the first element in the paragraph an unexpected behavior occurs.

These are the known cases:

  • System.ArgumentOutOfRangeException: 'Index and length must refer to a location within the string. Parameter name: length'
  • System.InvalidCastException: 'Unable to cast object of type <<type>> to type 'Telerik.Windows.Documents.Flow.Model.Run'.'
  • Shifted text.