Completed
Last Updated: 20 Jan 2021 12:32 by ADMIN
Release R1 2021
ADMIN
Created by: Deyan
Comments: 19
Category: WordsProcessing
Type: Feature Request
67
At this point the PdfFormatProvider does not support floating images and these elements are skipped when exporting to PDF.

The feature is trivial for floating images with "Behind Text"/"In Front of Text" settings, but otherwise floating images are affecting the text layout in complex ways.
Unplanned
Last Updated: 19 Mar 2019 16:39 by ADMIN
ADMIN
Created by: Deyan
Comments: 1
Category: WordsProcessing
Type: Feature Request
30
These file formats are very similar to DOCX, and can be easily imported with loss of some information (e.g. macros).
Completed
Last Updated: 01 Sep 2021 12:14 by ADMIN
Release R2 2021
ArgumentException with 'Invalid value' message is thrown when importing invalid font sizes from docx, e.g.

<w:sz></w:sz> 

(the 'val' attribute should be specified according to the OOXML specification).

Instead, such documents could be imported as the w:sz is not specified, similar to the behavior of MS Word.
Unplanned
Last Updated: 15 Feb 2022 16:56 by Joshua
ADMIN
Created by: Deyan
Comments: 1
Category: WordsProcessing
Type: Feature Request
3
Add support for smart tags (described in the OOXML using the smartTag element). As currently smart tags are not supported, the content inside them is not imported from docx.
Unplanned
Last Updated: 18 Aug 2017 09:58 by ADMIN
Now headings are imported with default heading styles.

Introduce an option for Heading styles to be exported as <h1> - <h6> tags. Consider whether this should be the default behavior, because MS Word exports Headings with H tag and additionally adds styling so the resulting HTML will visually look the way it does in MS Word.
Declined
Last Updated: 27 Jan 2017 15:07 by ADMIN
When paragraphs in list and with hanging indent set are imported from RTF, unexpected values for hanging indent and left indent are imported. The problem is most visible when the document is exported to HTML and visualized in browser, as bullets of the list appear over the content.
Unplanned
Last Updated: 04 Dec 2020 09:21 by ADMIN
ADMIN
Created by: Deyan
Comments: 4
Category: WordsProcessing
Type: Feature Request
18
Support for table styles with different properties for first/last row and column, row bandings.
Completed
Last Updated: 04 Feb 2020 14:49 by ADMIN
Release LIB 2020.1.210 (02/10/2020)
When importing from HTML, all successive spaces in a spans are trimmed. Instead, in some cases one space should be left, e.g. between words. For example, the importing the following HTML should leave one space after the hyperlink:

<p><a href="www.telerik.com" target="_blank"><span>test</span></a>      and more.</p>

Workaround: After importing, check if the runs after the hyperlinks start with space:
foreach (var hyperlinkEnd in this.document.EnumerateChildrenOfType<FieldCharacter>().Where(f => f.FieldCharacterType == FieldCharacterType.End))
{
    Paragraph currentParagraph = hyperlinkEnd.Paragraph;
    int indexOfNextRun = currentParagraph.Inlines.IndexOf(hyperlinkEnd) + 1;
    if (currentParagraph.Inlines.Count > indexOfNextRun)
    {
        Run run = currentParagraph.Inlines[indexOfNextRun] as Run;
        if (run != null && run.Text[0] != ' ')
        {
            run.Text = " " + run.Text;
        }
    }
}
Completed
Last Updated: 20 Jan 2022 08:20 by ADMIN
Release R1 2022
ADMIN
Created by: Deyan
Comments: 17
Category: WordsProcessing
Type: Feature Request
44
Implement nested mail merge and master-detail scenario.
Unplanned
Last Updated: 18 Aug 2017 09:10 by ADMIN
ADMIN
Created by: Deyan
Comments: 0
Category: WordsProcessing
Type: Feature Request
15
There should be an option allowing users to embed fonts in their documents.

Seems to be applicable for DOCX and RTF, MS Word has such option in File -> Options -> Save.
Unplanned
Last Updated: 18 Aug 2017 09:48 by ADMIN
When importing a simple table from HTML in Ms Word, it gets applied table cell spacing and margin. This makes it look more in the manner it does in a browser, i.e. the content of cells is vertically centered.

Check for TableCell, TableRow, and Table.
Unplanned
Last Updated: 08 Sep 2017 06:20 by ADMIN
ADMIN
Created by: Deyan
Comments: 0
Category: WordsProcessing
Type: Feature Request
0
Hyperlinks should support this property in order to describe where they should be opened (in the same frame/tab or in a new one). It is described in the OOXML specification as tgtFrame (Hyperlink Target Frame). It will be useful for setting the target as _blank.
Unplanned
Last Updated: 09 Jan 2023 09:11 by ADMIN
ADMIN
Created by: Deyan
Comments: 8
Category: WordsProcessing
Type: Feature Request
22
Introduce new section properties which are responsible for defining columns in the section.
Unplanned
Last Updated: 27 Jan 2017 11:07 by ADMIN
When a style doesn't have explicitly defined font, the font from the default character properties (\defchp) is used when present. Instead, the font used for the style should be the default font for the document, defined with \deffN tag.
The same issue occur when the doesn't contain \defchp at all. In this case, the font for the style is not imported, but instead the defined with  \deffN tag should be used.

The construction is not common, and MS Word for example doesn't produce such documents.
Unplanned
Last Updated: 07 Mar 2024 12:49 by ADMIN
ADMIN
Created by: Deyan
Comments: 2
Category: WordsProcessing
Type: Feature Request
14

			
Completed
Last Updated: 18 Jan 2023 10:59 by Vladimír
Release R1 2023
ADMIN
Created by: Deyan
Comments: 9
Category: WordsProcessing
Type: Feature Request
42
This feature includes: table of figure, table of tables etc.

TOC field contains PageRef fields inside it. To update it, we will need pagination (layout) support and PageRef fields implementation. Also TOC update can be influenced by TC fields presence in the document.

Implement export to PDF.
Unplanned
Last Updated: 18 Aug 2017 09:05 by ADMIN
Extend the support for em units. Em is calculated relatively to the font-size style property.
Declined
Last Updated: 09 Dec 2016 13:28 by ADMIN
ADMIN
Created by: Deyan
Comments: 0
Category: WordsProcessing
Type: Feature Request
0
The item is closed as duplicate. Please, submit your votes and subscribe for notifications to the item at https://feedback.telerik.com/Project/184/Feedback/Details/190053-wordsprocessing-support-for-importing-dotm-dotx-and-docm-files.
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.
Completed
Last Updated: 01 Sep 2021 07:09 by ADMIN
Release R2 2021
ADMIN
Created by: Tanya
Comments: 5
Category: WordsProcessing
Type: Feature Request
35
The API should allow you to perform a text-based search and return the parent element(s) of the result(s) or directly the found element(s).