Unplanned
Last Updated: 15 Oct 2020 05:34 by ADMIN
Created by: Dimitar
Comments: 0
Category: WordsProcessing
Type: Feature Request
4
The Open Document Format for Office Applications (ODF), also known as OpenDocument, is an open standard file format for spreadsheets, charts, presentations, and word processing documents using ZIP-compressed[6] XML files.

The most common filename extension for word processing (text) is .odt.
Unplanned
Last Updated: 09 Oct 2020 08:44 by ADMIN

At this point, only background-color is supported. Add support for bgcolor attribute as well. It could be used with the following tags: body, marquee, table, tBody, td, tFoot, th, tHead, tr.

 

Unplanned
Last Updated: 29 Sep 2020 11:42 by ADMIN
The provider can be extended so that the users can choose between exporting the superscript/subscript text with CSS styling or with HTML tags. Currently, the content can be exported with styles only.
Unplanned
Last Updated: 29 Sep 2020 11:38 by ADMIN
The provider can be extended so that the users can choose between exporting the font styles with CSS styling or with HTML tags. Currently, the content can be exported with styles only.
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: 23 Sep 2020 13:23 by ADMIN
Created by: César
Comments: 0
Category: WordsProcessing
Type: Feature Request
5

Such objects are defined as oleObject elements in the XML:

<w:object w:dxaOrig="3795" w:dyaOrig="3555">
	<v:shape id="_x0000_i1026" type="#_x0000_t75" style="width:32.85pt;height:30.55pt" o:ole="" fillcolor="window">
	  <v:imagedata r:id="rId9" o:title=""/>
	</v:shape>
	<o:OLEObject Type="Embed" ProgID="PBrush" ShapeID="_x0000_i1026" DrawAspect="Content" ObjectID="_1647182330" r:id="rId10"/>
</w:object>

Currently, they are skipped on import.

 

Completed
Last Updated: 25 Sep 2020 14:08 by ADMIN
Release R3 2020 SP1
When the associated document style is not of type StyleType.Table (does not contain TableProperties) a NullReferenceException is thrown.
Unplanned
Last Updated: 18 Sep 2020 05:47 by ADMIN
Introduce support for the "page-break-inside" tag when importing an HTML
Unplanned
Last Updated: 11 Sep 2020 10:01 by ADMIN
The negative margin is not respected when exporting to pdf.
Unplanned
Last Updated: 12 Aug 2020 06:54 by ADMIN

Wrongly imported/exported table cells from nested tables (see the picture below).

Unplanned
Last Updated: 26 Oct 2020 09:37 by ADMIN
When exporting to PDF document, the image size is exported wrong when the image is wrapped in VML shape and the size is set in this shape.
Completed
Last Updated: 29 Jan 2021 14:43 by ADMIN
Release R1 2021 SP1
Image size is not respected when importing HTML
Unplanned
Last Updated: 31 Jul 2020 06:39 by ADMIN
Right alignment in a table does not work when converting from html to pdf
Unplanned
Last Updated: 21 Oct 2020 12:18 by ADMIN
Created by: Dimitar
Comments: 4
Category: WordsProcessing
Type: Feature Request
1
 Tables: introduce support for GridBefore property.
Unplanned
Last Updated: 28 Jul 2020 08:02 by ADMIN

There is a discrepancy between RadWordsProcessing and MS Word:

A possible workaround could be to set the row height the same as the image height:
row.Height = new TableRowHeight(HeightType.Exact, image.Image.Height); 

Completed
Last Updated: 19 May 2022 12:12 by ADMIN
Release R2 2022 SP1

Wrongly exported table width when the table preferred width is set to fixed:

<w:tblW w:w="11160" w:type="dxa"/>

and it is greater than the available page width: 

<w:pgSz w:w="12240" w:h="15840"/>
<w:pgMar w:top="630" w:right="1440" w:bottom="540" w:left="1440" w:header="720" w:footer="720" w:gutter="0"/>

Available page width = 12240 - (1440 + 1440) = 9360

A possible workaround is to set the page width to Auto:

IEnumerable<Table> tables = document.EnumerateChildrenOfType<Table>();
foreach (Table table in tables)
{
	if (table.PreferredWidth.Type == TableWidthUnitType.Fixed)
	{
		table.PreferredWidth = new TableWidthUnit(TableWidthUnitType.Auto, table.PreferredWidth.Value);
	}
}

 

Unplanned
Last Updated: 22 Jul 2020 12:19 by ADMIN
The exported rtf file is not valid and cannot be imported when converting from HTML.
Unplanned
Last Updated: 21 Jul 2020 08:29 by ADMIN
Created by: Dimitar
Comments: 0
Category: WordsProcessing
Type: Bug Report
1
The background color is not exported to pdf
Unplanned
Last Updated: 17 Jul 2020 08:39 by ADMIN
Created by: David
Comments: 0
Category: WordsProcessing
Type: Feature Request
1
Provide an API for getting the CellType value in order to check if the cell in a row is of type Header/Body.
Completed
Last Updated: 31 Oct 2023 14:44 by ADMIN
Release R3 2023 SP1
List item (HTML) that contains paragraph is shown on the next line when exporting to PDF