Unplanned
Last Updated: 16 Aug 2017 13:59 by ADMIN
ADMIN
Created by: Deyan
Comments: 0
Category: WordsProcessing
Type: Feature Request
3
Implement evaluation of = (Formula) fields (https://support.office.com/en-us/article/Field-codes-Formula-field-32d5c9de-3516-4ec3-80ed-d1fc2b5bc21d?ui=en-US&rs=en-US&ad=US ). This will allow export to PDF and HTML.
Unplanned
Last Updated: 03 May 2021 09:30 by ADMIN
ADMIN
Created by: Tanya
Comments: 2
Category: WordsProcessing
Type: Feature Request
3
The alternative text allows setting a description of the information contained inside the table and is useful for people who may not be able to see the content.
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.
Unplanned
Last Updated: 24 Sep 2020 06:07 by ADMIN

There are 27 types of border styles in the Open XML specification and they are implemented in RadFlowDocument. Part of the borders are already supported (eg. None, Single, Dotted) when exporting to HTML, all others are treated as None and stripped.

The HTML format doesn't support all types of border styles OOXML format supports.

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: 28 May 2021 07:23 by ADMIN
Created by: Oksana
Comments: 0
Category: WordsProcessing
Type: Feature Request
2
Provide support for import and export of Fields to HTML format.
Unplanned
Last Updated: 17 Apr 2020 07:44 by ADMIN
Currently, the Float property is not supported and it is skipped on import.
Unplanned
Last Updated: 30 Dec 2019 07:01 by ADMIN
Currently, ImportSettings allows importing a single stylesheet only. Users should be able to specify and load several external stylesheets.
Unplanned
Last Updated: 13 Apr 2022 09:33 by ADMIN
Created by: Andy
Comments: 2
Category: WordsProcessing
Type: Feature Request
2
Add Mail Merge events.
Unplanned
Last Updated: 23 Oct 2023 06:38 by Andreas
Preserve Footnotes/Endnotes information.
Unplanned
Last Updated: 08 Aug 2019 10:21 by ADMIN
Created by: Naveen
Comments: 0
Category: WordsProcessing
Type: Feature Request
2
Create a feature that allows the RadWordsProcessing to split RadFlowDocument.

Workaround: DocumentElementImporter can be used to prepare a document element from the source document for import into the target document

private static void SplitDocument(RadFlowDocument sourceDocument, RadFlowDocument targetDocument)
{
    DocumentElementImporter importer = new DocumentElementImporter(targetDocument, sourceDocument, ConflictingStylesResolutionMode.UseTargetStyle);
    Section section = sourceDocument.EnumerateChildrenOfType<Section>().First();
    Section importedSection = importer.Import(section);
    targetDocument.Sections.Add(importedSection);
 
    sourceDocument.Sections.Remove(section);
}
Unplanned
Last Updated: 17 Jan 2019 17:16 by ADMIN
Created by: Cezary
Comments: 0
Category: WordsProcessing
Type: Feature Request
2
The RowSpan and ColumnSpan properties change the size of the cells so they occupy the desired number of rows/columns but doesn't merge them with other cells. It would be more convenient for the customers to have an option to directly merge or split cells.
Unplanned
Last Updated: 13 Sep 2017 06:17 by ADMIN
ADMIN
Created by: Todor
Comments: 0
Category: WordsProcessing
Type: Feature Request
2
Introduce an option to implement custom field in RadFlowDocument model (one which is not supported by the document model).

In the current implementation the abstract Field class has internal abstract method which is responsible for the GetFieldResult() method and this leads to an issue when a customer wants to implement a field which we currently do not support (CustomCodeField which returns null as a result fragment).
Unplanned
Last Updated: 11 Mar 2022 10:00 by Devan
The property controls whether all the lines of a paragraph should be rendered on the same page when the document is shown in page view mode.
Unplanned
Last Updated: 20 Sep 2016 14:56 by ADMIN
ADMIN
Created by: Tanya
Comments: 0
Category: WordsProcessing
Type: Feature Request
2
When an image is moved to a location, different than the default one, this setting is not respected due to the missing margin property.
Unplanned
Last Updated: 20 Jul 2018 08:24 by ADMIN
ADMIN
Created by: Tanya
Comments: 0
Category: WordsProcessing
Type: Feature Request
2
Enable the customers to add digital signatures to the documents and read signed documents.
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: 22 Feb 2017 11:51 by ADMIN
Introduce support for East Asia fonts.
Unplanned
Last Updated: 03 Oct 2017 12:35 by ADMIN
In OOXML, table row can define table properties named 'table level property exception' using 'tblPrEx' element. These properties shall be respected by the row instead of the table properties defined on table level.

Add similar property in the TableRow model and respect it in the corresponding exports.
Unplanned
Last Updated: 05 Apr 2018 14:22 by ADMIN
Add support for exporting hyperlinks which are not valid URIs to PDF. Currently such hyperlink URIs are not exported to the PDF document.

Example of such hyperlink is "mailto:abc%20abc-abc-abc%20%3cabc@abc.com%3e" (mailto:abc abc-abc-abc <abc@abc.com>), but there could be more types. Currently the internal API relies on creating instance of the system Uri class, which is not possible in this case.