Completed
Last Updated: 16 Aug 2022 05:04 by ADMIN
Release R3 2022
ADMIN
Created by: Mihail
Comments: 1
Category: WordsProcessing
Type: Feature Request
5
Office Open XML defines a mechanism for the storage of content which is not defined by this Office Open XML Standard, for example extensions developed by future software applications.

The stored data could be an image.
Unplanned
Last Updated: 15 Aug 2022 07:16 by Scott

Exception when there are merge fields in the header/footer and one performs mail merge: 

Unable to cast object of type 'Telerik.Windows.Documents.Flow.Model.Header' to type 'Telerik.Windows.Documents.Flow.Model.BlockBase

Completed
Last Updated: 05 Aug 2022 07:23 by ADMIN
Release R3 2022
The attached sample project below demonstrates a possible workaround for PAGE and NUMPAGES fields when exporting to PDF. The demo shows how to generate document from scratch containing PAGE and NUMPAGES fields and export it to PDF.
Unplanned
Last Updated: 05 Aug 2022 05:00 by Josh

Find and Replace document elements with special characters.

  • ^p - Paragraph Mark
  • ^t - Tab Character
  • ^? - Any Character
  • ^# - Any Digit
  • ^$ - Any Letter
  • ^^ - Caret Character
  • ^u - Section Character
  • ^v - Paragraph Character
  • ^c - Clipboard Contents
  • ^n - Column Break
  • ^+ - Em Dash
  • ^= - En Dash
  • ^e - Endnote Mark
  • ^d - Field
  • ^& - Find What Text
  • ^f - Footnote Mark
  • ^g - Graphic
  • ^l - Manual Line Break
  • ^m - Manual Page Break
  • ^~ - Nonbreaking Hyphen
  • ^s - Nonbreaking Space
  • ^- - Optional Hyphen
  • ^b - Section Break
  • ^w - White Space
Completed
Last Updated: 29 Jul 2022 12:59 by ADMIN
Release R3 2022

When inserting a section between two paragraphs the section parent is not correct.

Example:

Paragraph paragraph1 = editor.InsertParagraph();
Paragraph paragraph2 = editor.InsertParagraph();
editor.InsertSection();
Paragraph paragraph3 = editor.InsertParagraph();

Expected:

paragraph1.Parent == paragraph2.Parent
paragraph2.Parent  != paragraph3.Parent 

Actual:

paragraph1.Parent != paragraph2.Parent
paragraph2.Parent  == paragraph3.Parent 

Unplanned
Last Updated: 29 Jul 2022 11:15 by Mahendra
Allow performing a mail merge with a data table instead of just IEnumerable
Unplanned
Last Updated: 19 Jul 2022 07:54 by Augusto
The CompatibilityVersion is not respected during import and is lost after the export.
Completed
Last Updated: 18 Jul 2022 13:29 by ADMIN
Release R3 2022
This attribute specifies the caption for the current DrawingML object. Currently, it is omitted while importing the content with DocxFormatProvider.
Unplanned
Last Updated: 18 Jul 2022 06:02 by Xiao
WordsProcessing: RtfFormatProvider: Does not export "cellx" correctly when table LayoutType is FixedWidth.
Completed
Last Updated: 07 Jul 2022 07:47 by ADMIN
Release R3 2022
The description text for an image is not properly exported when the same property is set on the parent inline element.
Completed
Last Updated: 05 Jul 2022 10:23 by ADMIN
Release R3 2022
A document containing <group> element from any namespace other than "w" with no content control inside this part causes InvalidOperationException with 'Stack empty' message.
Completed
Last Updated: 05 Jul 2022 08:24 by ADMIN
Release R3 2022
When a break element is defined in the middle of a Run, DocxFormatProvider imports it at the end of the same run. For example, the following content: 

<w:r>
  <w:t>This is</w:t>
  <w:br/>
  <w:t xml:space="preserve"> a simple sentence.</w:t>
</w:r>

Results in "This is a simple sentence " + break element after it.
Unplanned
Last Updated: 29 Jun 2022 11:37 by Kamran
The HtmlFormatProvider of WordsProcessing doesn't have a notion about the style metadata added by RadRichTextBox. That results in incorrect import of linked styles.
Unplanned
Last Updated: 28 Jun 2022 14:47 by GEORGE BRANDES
In specific cases, importing a table adds additional borders that shouldn't appear. Still, other borders that are defined in the source document, are missing from the result.
Unplanned
Last Updated: 20 Jun 2022 09:45 by Shaun
DocFormatProvider: unable to import a document with a set page numbering type 
Unplanned
Last Updated: 20 Jun 2022 06:17 by ADMIN
Import of Tables with border style needs improvements. Currently, it takes multiple seconds to import table with 100x6 cells no matter if the border style is defined globally or locally. This may be seen when importing the attached files "table with borders.html" and "table single border style.html". Importing the same table without borders is achieved in less than a second which may be seen with the attached "table without borders.html".
Unplanned
Last Updated: 17 Jun 2022 12:06 by Justin

Introduce support for min-height. Currently, this property is skipped. 

As a possible workaround, the height property of the table row could be applied.


Duplicated
Last Updated: 16 Jun 2022 06:39 by ADMIN
When the MergeField contains line breaks they are exported after all the runs in the paragraph.

Unplanned
Last Updated: 14 Jun 2022 10:02 by Miroslav

If a document has runs with font size larger than the one set in the style of the paragraphs and this document is exported to HTML, the resulting paragraphs overlap.

image

Unplanned
Last Updated: 07 Jun 2022 11:25 by ADMIN
This is only reproducible when the Run contains an empty string. If the paragraph is empty or the Run contains a space, everything is working correctly.

Workaround: Remove all empty runs from the document.