Completed
Last Updated: 20 Jan 2021 12:32 by ADMIN
Release R1 2021
ADMIN
Created by: Deyan
Comments: 19
Category: WordsProcessing
Type: Feature Request
66
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.
Completed
Last Updated: 23 Aug 2023 10:01 by ADMIN
ADMIN
Created by: Deyan
Comments: 23
Category: WordsProcessing
Type: Feature Request
62
Add support for shapes, and especially for shapes with textual content. 
In OOXML, shapes are represented by the wps:wsp element, and shapes with textual content by <wps:txbx>, <w:txbxContent>.
Such shape can be added to a Word document using the Insert -> Text -> Text Box -> Draw Text Box, or through a shape's context menu -> Add Text.

Do not confuse these shapes with Text/Rich Text content controls (see https://feedback.telerik.com/Project/184/Feedback/Details/190057 )
Completed
Last Updated: 20 Jan 2022 08:20 by ADMIN
Release R1 2022
ADMIN
Created by: Deyan
Comments: 17
Category: WordsProcessing
Type: Feature Request
43
Implement nested mail merge and master-detail scenario.
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.
Completed
Last Updated: 13 Nov 2020 08:22 by ADMIN
Release R1 2021
ADMIN
Created by: Deyan
Comments: 0
Category: WordsProcessing
Type: Feature Request
42
Implement support for content controls (a.k.a. Structured document tags), which will allow inserting editing controls in the document:

- Rich Text
- Plain Text
- Check Box
- Combo Box
- Drop-down list
- Date picker

Do not confuse this feature with form fields support (see https://feedback.telerik.com/Project/184/Feedback/Details/219850 ).
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).
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:50 by ADMIN
Release R2 2021
ADMIN
Created by: Deyan
Comments: 2
Category: WordsProcessing
Type: Feature Request
26
Enable the customers to work with .doc files.
Completed
Last Updated: 20 Jan 2022 08:21 by ADMIN
Release R1 2022
ADMIN
Created by: Deyan
Comments: 2
Category: WordsProcessing
Type: Feature Request
26
In WordsProcessing you could set 

table.Alignment = Telerik.Windows.Documents.Flow.Model.Styles.Alignment.Center;

But when the document is exported to PDF, this is not respected.
Completed
Last Updated: 15 Sep 2021 13:09 by ADMIN
Release 2021
Introduce an option to replace a Run text with line breaks and/or new lines or with other document elements such as Table, Image, Paragraph and etc. 

The following code snippet shows how a Run can be replaced with another inline element:

RadFlowDocument document = new RadFlowDocument();
RadFlowDocumentEditor editor = new RadFlowDocumentEditor(document);
 
editor.InsertText("text");
editor.InsertText("REMOVE");
editor.InsertText("text");
 
foreach (Run run in document.EnumerateChildrenOfType<Run>().ToList())
{
    if (run.Text == "REMOVE")
    {
        Paragraph paragraph = run.Paragraph;
        int childIndex = paragraph.Inlines.IndexOf(run);
 
        ImageInline image = new ImageInline(document);
        using (Stream stream = File.OpenRead("example_image.png"))
        {
            image.Image.ImageSource = new Telerik.Windows.Documents.Media.ImageSource(stream, "png");
        }
 
        paragraph.Inlines.Insert(childIndex, image);
        paragraph.Inlines.Remove(run);
    }
}
Completed
Last Updated: 20 Jan 2022 08:19 by ADMIN
Release R1 2022
Respect the Height property of TableRow when exporting with PdfFormatProvider.
Completed
Last Updated: 20 Jan 2022 08:19 by ADMIN
Release R1 2022
The vertical alignment of the table cells is not exported to PDF. The values are always exported with top alignment.
Completed
Last Updated: 18 Apr 2022 13:47 by ADMIN
Release R2 2022
When this type of section break is used, the next section should start on the same page instead on the next one.
Completed
Last Updated: 11 May 2023 13:31 by ADMIN
Release R2 2023
ADMIN
Created by: Deyan
Comments: 5
Category: WordsProcessing
Type: Feature Request
12

Currently some properties are supported only in their shorthand forms, and others - only in their longhand forms: - 'background' shorthand is not supported. - 'margin' shorthand is not supported.

- 'padding' shorthand is not supported. - 'border' shorthand is supported, but 'border-bottom-color', 'border-bottom-style', 'border-bottom-width', 'border-left-color', 'border-left-style', 'border-left-width', 'border-right-color', 'border-right-style', 'border-right-width', 'border-style', 'border-top-color', 'border-top-style', 'border-top-width', 'border-width' are not supported.

IMPORTANT: This feature is available in .NET Core, .NET 6 and above.

Completed
Last Updated: 17 May 2023 10:55 by ADMIN
Release R2 2023
Provide support for setting color values using rgb() function.

Example: background-color: rgb(197,93,161);
Completed
Last Updated: 20 Nov 2020 09:37 by ADMIN
Release R1 2021
Add support for setting and exporting document metadata, like Title, Author and similar.
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.
Completed
Last Updated: 01 Sep 2021 12:10 by ADMIN
Release R2 2021
ADMIN
Created by: Tanya
Comments: 0
Category: WordsProcessing
Type: Feature Request
4
Enable the customers to work with .dot files.
Completed
Last Updated: 22 Jan 2020 11:54 by ADMIN
Release LIB 2020.1.127 (01/27/2020)
ADMIN
Created by: Deyan
Comments: 0
Category: WordsProcessing
Type: Feature Request
4
Currently Run.Shading is not exported to PDF.

Note: This scenario is common when converting HTML to PDF, as Run.Shading is set when construct like <span style="background-color:#ffcc00;"> is used.

Workaround: Iterate all the Runs in the already imported HTML document and set their HighlightColor to Shading.BackgroundColor.LocalValue. Check this code snippet:
foreach (Run run in document.EnumerateChildrenOfType<Run>())
{
	if (!run.Properties.HighlightColor.HasLocalValue)
	{
		run.HighlightColor = run.Shading.BackgroundColor.LocalValue;
	}
}


Completed
Last Updated: 02 Aug 2021 14:24 by Marc
Release R3 2021
The <col> tag specifies column properties for each column within a <colgroup> element. It is useful for applying styles to entire columns, instead of repeating the styles for each cell, for each row. This functionality is currently not respected while importing with HtmlFormatProvider.
1 2 3