Unplanned
Last Updated: 08 Nov 2017 12:37 by ADMIN
Take into account the table row's CanSplit property when exporting to PDF from RadFlowDocument model. Is set to false, the table row should not be split between two pages, if possible.

This property could be set to false, for example, when importing MS Word documents with "Allow row to break across pages" unchecked for some table rows.
Unplanned
Last Updated: 27 Oct 2017 12:08 by ADMIN
Currently, this property is exported only for Run and Paragraph elements.
Unplanned
Last Updated: 17 Oct 2017 08:09 by ADMIN
When the <sectPr> element is not defined as the last child element but appears in different position of the <body> of the document, the content after <sectPr> is not imported. 

Although some applications handle this case, according to the Office Open XML specification, the sectPr element must be the last element inside the <body>.
Unplanned
Last Updated: 16 Oct 2017 15:45 by ADMIN
Currently, this property is implemented only in DOCX and RTF exports.
Unplanned
Last Updated: 10 Oct 2017 14:30 by ADMIN
This is happening because the cell with preferred width 100% takes all the available width and all other columns are rendered with no available width which causes the height of the table to grow big.

WORKAROUND: Either clear the cell PreferredWidth property or set it to value which is smaller than 100%.
Unplanned
Last Updated: 05 Oct 2017 10:15 by ADMIN
ADMIN
Created by: Deyan
Comments: 2
Category: WordsProcessing
Type: Feature Request
4
This field allows performing a mail merge operations with labels representing different source items on the same page.
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: 20 Sep 2017 13:31 by ADMIN
ADMIN
Created by: Todor
Comments: 0
Category: WordsProcessing
Type: Feature Request
0
Add Borders property for a Run element and in CharacterProperties. The same is implemented for Paragraph, but in OOXML it could be applied over a Run element as well.
Unplanned
Last Updated: 13 Sep 2017 06:30 by ADMIN
Import styling properties from HTML for elements without DocumentElementProperties. For example, for ImageInline: the image has width and height and currently they could not be applied through CSS styling as the styling mechanism works only for document elements with DocumentElementPropertiesBase (RadFlowDocument, Section, Table, Paragraph, etc.)
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).
Declined
Last Updated: 13 Sep 2017 06:12 by ADMIN
ADMIN
Created by: Deyan
Comments: 1
Category: WordsProcessing
Type: Feature Request
0

			
Unplanned
Last Updated: 13 Sep 2017 06:11 by ADMIN
ADMIN
Created by: Mihail
Comments: 0
Category: WordsProcessing
Type: Feature Request
1
Implement import and export of bookmarks to HTML format.
Unplanned
Last Updated: 13 Sep 2017 06:03 by ADMIN
The <font> tag has a 'size' attribute that can be set to a number from 1 to 17. This is currently not supported and is just ignored.
Unplanned
Last Updated: 12 Sep 2017 14:32 by ADMIN
ADMIN
Created by: Deyan
Comments: 0
Category: WordsProcessing
Type: Feature Request
0
Currently tabs are always exported to HTML using two &nbsp;-s. But tabs could have different length depending on Paragraph's tab stops and document's default tab stop width. 
Unplanned
Last Updated: 11 Sep 2017 15:02 by ADMIN
When document model contains styles with names containing characters which usage is not valid in CSS (e.g. '['), those characters must be escaped. Currently HTML documents containing invalid CSS are produced.
Unplanned
Last Updated: 11 Sep 2017 14:29 by ADMIN
'thead' HTML element represents table row that should be repeated at the top of each page. MS Word maps this to TableRow with RepeatOnEveryPage set to true. This works for both export and import.
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: 08 Sep 2017 06:14 by ADMIN
Created by: Florian
Comments: 1
Category: WordsProcessing
Type: Feature Request
3
Make it possible to link files (read: excel table) into word documents, so the editing experience in e.g. word allows to navigate to the linked file.

Ms Word and OOXML allow insertion of files in a docx document. This results in OLEOobject referring to the embedded file.
Unplanned
Last Updated: 08 Sep 2017 05:48 by ADMIN
Implement API allowing to add watermarks without specifying its width and the height. The size could be automatically calculated using the text, its font size and font family.
Unplanned
Last Updated: 07 Sep 2017 06:58 by ADMIN
CSS style property with a numeric value will not be imported from HTML when the unit type is not specified. Example: .td{padding-bottom: 200;}

This is invalid according to the HTML spec (value is optional only after 0), though web browsers and MS Word open such HTML's correctly.