Unplanned
Last Updated: 25 May 2023 13:28 by ADMIN
Created by: Nikolay
Comments: 2
Category: WordsProcessing
Type: Feature Request
2
Allow insertion of Equations and Formulas. The feature can have merge fields inside the equations.
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

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
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.
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: 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 

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: 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.
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.
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: 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.


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.
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: 01 Jun 2022 07:27 by chrbra
The LockAspectRatio property of the ImageInline does not work after export to Docx
Completed
Last Updated: 02 Aug 2024 11:09 by ADMIN
Release 2024.3.802 (2024 Q3)
When a numbered list marker's font is exported to PDF, the resulting PDF file's list marker is not the proper font. The font of the text in the list entries themselves is correct.
Completed
Last Updated: 02 Aug 2024 11:09 by ADMIN
Release 2024.3.802 (2024 Q3)

The hanging indent of the paragraph affects the rendering of content with tabs. However, the indent is not respected while generating the PDF, leading to disordered content.

Workaround: Insert a tab stop with the position set to the value for hanging indent:

foreach (var paragraph in this.flowDocument.EnumerateChildrenOfType<Paragraph>())
{
    if (paragraph.Properties.HangingIndent.HasLocalValue)
    {
        Run run = paragraph.EnumerateChildrenOfType<Run>().Where(r => r.Text == "\t").FirstOrDefault();

        if (run != null)
        {
            paragraph.TabStops = paragraph.TabStops.Insert(new Telerik.Windows.Documents.Flow.Model.Styles.TabStop(paragraph.Properties.HangingIndent.LocalValue.Value));
        }

    }
}

Unplanned
Last Updated: 02 May 2022 09:18 by Mathew

Exporting RTF document to HTML when there is a multilevel numbered list, strips the numbers and leaves only the main number visible (e.g. 2.1 becomes 1). Also, the text overlaps the numbering. 

Workaround: Use numbers with letters instead of numbers only. (e.g. 1 a b c, 2 a b c).