Completed
Last Updated: 02 Aug 2024 11:09 by ADMIN
Release 2024.3.802 (2024 Q3)
ADMIN
Created by: Tanya
Comments: 0
Category: WordsProcessing
Type: Feature Request
9
Enable the customers to import SVG images and use them in their documents.
Unplanned
Last Updated: 23 Jan 2019 09:45 by ADMIN
Enable customers to create and modify chart objects. The shapes featurŠµ must be implemented before implementing this functionality.
Unplanned
Last Updated: 22 Aug 2022 11:17 by ADMIN
Created by: Zlatko
Comments: 3
Category: WordsProcessing
Type: Feature Request
9

When exporting, an option of how to create the PDF bookmarks should be provided:
- Using the RadFlowDocument bookmarks
- Using document Headings

Unplanned
Last Updated: 30 Oct 2024 15:45 by ADMIN
ADMIN
Created by: Deyan
Comments: 2
Category: WordsProcessing
Type: Feature Request
8
Implement page border property which could be applied over the whole document or over a specific page.
Completed
Last Updated: 02 Jul 2020 13:13 by ADMIN
Release R3 2020
Table and table cell borders are not evaluated according to inheritance and conflict resolution rules. A conflict will occur when different borders from the table and table cell are overlapping. 

The GetActualValue method of the TableBorders and TableCellBorders could potentially return an incorrect value in some of the following scenarios:

Scenario 1:
A table has cell spacing set to 0. Meaning that the table and table cell borders will overlap.
The table borders have defined all of its borders with border style "Single".
The table cell borders have all of its borders defined with border style "None".

Expected result: the resulting borders should have the border style set to "None" for the location where the table and the cell borders are overlapping.

Scenario 2:
A table has explicitly defined that its right border is with border style "None".
The table has a table style applied with defined border style of type "Single" for all table borders.

Expected result: All of the table borders except the right border should have border style of "Single".

The problem is mostly visible when exporting to PDF and RTF format.
Unplanned
Last Updated: 03 Jan 2017 21:14 by ADMIN
ADMIN
Created by: Boby
Comments: 0
Category: WordsProcessing
Type: Feature Request
7
The paragraphs in RadFlowDocument can have paragraph borders. These borders are not exported when exporting the document to PDF. 
Unplanned
Last Updated: 02 Aug 2023 07:03 by ADMIN
ADMIN
Created by: Boby
Comments: 4
Category: WordsProcessing
Type: Feature Request
7
Introduce Run.IsHidden property or similar, which hides the text in the document.

In MS Word, text is hidden using the Home -> Font -> Font -> Effects -> Hidden. In the Rtf format, such text is preceded (marked) with a '\v' tag. In OOXML, the tag is <vanish/>. The display: none; style from HTML is mapped to hidden text when document is converted to DOCX.

Hidden text is visualized with dotted underline when formatting symbols are shown. Hidden text is not exported to PDF.
Completed
Last Updated: 08 May 2023 14:18 by ADMIN
Release R2 2023

TableRow which has defined an only val attribute of the trHeight is imported as a row with auto height. By the specification, this is right, but MS Word takes the val value as row height. Also MS Word exports "At Least" row height with only 'val' set.

Workaround: Iterate through the table rows and set them HeightType to Exact or AtLeast:

foreach (var row in this.document.EnumerateChildrenOfType<TableRow>())
{
    row.Height = new TableRowHeight(HeightType.AtLeast, row.Height.Value);
}

Unplanned
Last Updated: 28 Sep 2018 11:43 by ADMIN
Currently the PageOrientation property is used to determine the actual size of the paper to use on the printer and does not reflect document's visualization. In order to affect Section's appearance the user should change the PageSize and PageMargin properties. For convenience the Rotate method is introduced in order to update the properties simultaneously. However the usage of the Section.Rotate(PageOrientation) method is confusing since the properties are not updated when Section.PageOrientation is already set to the same value as the parameter. Also, Rotate method is useful only for rotating already created sections, and to create section with specified pages size and margins the user should set all Section's PageSize, PageMargin, PageOrientation properties anyway.

More convenient API must be provided to create Section instances with correctly set properties for the desired page orientation.
Unplanned
Last Updated: 25 Jul 2017 13:59 by ADMIN
In scenarios when center and right tabs are used for aligning the paragraph content to both left and right the text content in the exported PDF is not positioned as expected.
Unplanned
Last Updated: 16 Oct 2017 15:45 by ADMIN
Currently, this property is implemented only in DOCX and RTF exports.
Unplanned
Last Updated: 28 Jan 2019 15:02 by ADMIN
Allow to password-protect a document, so that it cannot be shown (read) without the password. Also, enable opening encrypted documents.

Workaround for encrypting: PdfProcessing can be used to encrypt the document:

using (MemoryStream ms = new MemoryStream())
{
    PdfFormatProvider pdfProcessingFormatProvider = new PdfFormatProvider();
    Telerik.Windows.Documents.Flow.FormatProviders.Pdf.PdfFormatProvider pdfFormatProvider = new Telerik.Windows.Documents.Flow.FormatProviders.Pdf.PdfFormatProvider();
    pdfFormatProvider.Export(flowDocument, ms);
    RadFixedDocument fixedDocument = pdfProcessingFormatProvider.Import(ms);

    using (Stream output = new FileStream(outputPath, FileMode.OpenOrCreate))
    {
        pdfProcessingFormatProvider.ExportSettings.IsEncrypted = true;
        pdfProcessingFormatProvider.ExportSettings.UserPassword = "pass";
        pdfProcessingFormatProvider.ExportSettings.ImageQuality = ImageQuality.Medium;
        pdfProcessingFormatProvider.Export(fixedDocument, output);
    }
}
 
Unplanned
Last Updated: 17 Jan 2023 07:50 by ADMIN
Created by: Grinden
Comments: 4
Category: WordsProcessing
Type: Feature Request
7

The non-breaking hyphen element is currently not supported in the model and is stripped when importing the document.


Completed
Last Updated: 24 Jun 2021 10:24 by ADMIN
In the document produced by the mail merge, the date time and numeric formatting applied are not respected and the value is in its default format. 
Unplanned
Last Updated: 09 May 2017 08:03 by ADMIN
ADMIN
Created by: Martin Ivanov
Comments: 0
Category: WordsProcessing
Type: Feature Request
6
Add support for character spacing. Currently, such spacing cannot be set and are not imported.
Unplanned
Last Updated: 13 Jul 2018 11:22 by ADMIN
LineInfo objects are not cleared when there are tables in the document being exported to PDF which leads to OutOfMemoryException.
Unplanned
Last Updated: 09 Sep 2019 14:28 by ADMIN

HtmlFormatProvider does not maintain all the whitespaces on import even though {style="white-space: pre;"} was set.

It should support {style="white-space: pre-wrap;"} as well.

It can eventually be extended to support all the property's values: normal|nowrap|pre|pre-line|pre-wrap|initial|inherit.

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: 18 Aug 2017 09:32 by ADMIN
ADMIN
Created by: Deyan
Comments: 0
Category: WordsProcessing
Type: Feature Request
5
In MS Word you can crop the image from Picture Tools -> Format -> Size -> Crop button in the ribbon. This preserves the whole image in the file, but when it is rendered it shows only the cropped image area.

This is described with 'srcRect' element in OOXML.
Completed
Last Updated: 24 May 2023 08:10 by ADMIN
Release R2 2023
When the last element in a table cell is an empty paragraph, the latter is skipped and not imported. It should be imported even if it's the only paragraph in the cell, as its properties could affect the layout and presentation (borders, colors, spacings).