Completed
Last Updated: 11 Jan 2024 08:24 by ADMIN
Release 2024 Q1
PdfFormatProvider: Inline image surrounded by bookmarks is incorrectly measured when the document contains numbering fields.
Unplanned
Last Updated: 10 Jan 2024 14:48 by Jennifer

Run the attached sample project. The available Doc1.docx contains an image place holder with borders around all sides. After inserting an image in the place holder, some of the borders are overlapping with the image:

The expected result is to have the borders around all sides:

Unplanned
Last Updated: 02 Jan 2024 07:47 by Muhammad

Workaround:

Setting the IsDirty property of the FiledInfo object to "true" in order to recalculate layout and update the fields when the document is opened in a viewer:
var fieldInfo = editor.InsertField("TOC");
fieldInfo.UpdateField();
fieldInfo.IsDirty = true;
Unplanned
Last Updated: 27 Dec 2023 07:06 by Sashi
When importing a document containing a Picture SDT with TextProperties an exception is thrown: StructuredDocumentTags.Builders.SdtBuilderFailureException: 'This content control type cannot be inserted around a selected image.'
Unplanned
Last Updated: 22 Dec 2023 14:46 by ADMIN
ADMIN
Created by: Tanya
Comments: 2
Category: WordsProcessing
Type: Feature Request
14
Add support for the All Caps and Small Caps properties of the runs. These properties are currently ommitted on import.
Unplanned
Last Updated: 22 Dec 2023 09:35 by Avrohom Yisroel
Unplanned
Last Updated: 19 Dec 2023 16:04 by Anthony

Merging (with RadFlowDocumentEditor's InsertDocument method) documents containing lists sometimes doesn't properly resolve the ListId properties.

Workaround: Removing the list with bullets resolves the issue as there is only one ListId to pick from:

document.Lists.Remove(1); 

 

Unplanned
Last Updated: 15 Dec 2023 17:53 by Anthony
An additional blank page is added when a page break is followed by a paragraph with enabled PageBreakBefore.
Unplanned
Last Updated: 08 Dec 2023 15:02 by Prabhu
When there is underline or strikethrough set to a bullet/number in docx, when this document is imported and then exported to HTML the entire paragraph is with underline/strikethrough.
Unplanned
Last Updated: 08 Dec 2023 14:51 by Prabhu

When there is a document (e.g. docx) with hanging indent in a list and this document is imported and then exported to HTML, the text overlaps the bullet as shown in the screenshot.

Unplanned
Last Updated: 04 Dec 2023 12:55 by ADMIN
The table styles are not imported correctly from HTML. The back color is not respected. The column width is incorrect. The font size is different.
Unplanned
Last Updated: 16 Nov 2023 13:14 by Deltaohm

Importing a document containing a hyperlink (<a>) tag without content extends it over the trailing elements.

For example, importing this HTML:

<a></a>
<p>First paragraph</p>
<p>Second paragraph</p>
<p>Third paragraph</p>

Generates:

Instead of this:

Unplanned
Last Updated: 08 Nov 2023 10:25 by Mervin

Indent of BodyTextIndent style applied to a paragraph is not respected on export.

Workaround: Remove the applied style.

var p = run.Paragraph;
p.Properties.StyleId = string.Empty;

 

Unplanned
Last Updated: 08 Nov 2023 09:42 by Mervin

List's top and bottom margins are not correctly exported.

Workaround: Apply TelerikNormal style to the 'ol' element.

Unplanned
Last Updated: 08 Nov 2023 09:33 by Mervin
List symbols (bullets and numbers) are exported at the position where the list content should be.
Completed
Last Updated: 06 Nov 2023 15:51 by Valery
Release R3 2023 SP1
Importing a Document (.doc) where the entire content is in a table leads to an endless loop.
Completed
Last Updated: 03 Nov 2023 11:42 by Kurt
Release R3 2023
FormatException when importing a document with "start" or "end" values for borders. 
Completed
Last Updated: 03 Nov 2023 10:46 by ADMIN
Release R3 2023
When a value contains points (w:pos="85.50pt") can't be properly converted. FormatException: 'Input string was not in a correct format.' occurs. 
Unplanned
Last Updated: 01 Nov 2023 15:29 by Luca Galbiati
Created by: Luca Galbiati
Comments: 0
Category: WordsProcessing
Type: Bug Report
1
The srcRect property of image is lost on Import/Export.
Unplanned
Last Updated: 01 Nov 2023 15:26 by Luca Galbiati
IsMultiline (Allow carriage returns - multiple paragraphs) property of TextControlElement is not imported/exported correctly.