Unplanned
Last Updated: 15 Dec 2020 10:05 by ADMIN
Created by: Dimitar
Comments: 0
Category: WordsProcessing
Type: Feature Request
1

Add support for inline lists. 

When the display attribute is set to inline all items should be on the same row (see attached) 

 

Completed
Last Updated: 09 Dec 2020 14:09 by ADMIN
Release R1 2021
When exporting a document to PDF, which contains TabStops with a position that exceeds the offset of the measured page, leads to an OutOfMemoryException.
Completed
Last Updated: 09 Dec 2020 09:34 by ADMIN
Release LIB 2020.3.1214 (07/14/2020)

In specific situations, a paragraph in a table cell which is last on a document page is not exported to the PDF document.

Possible workaround is adding a new paragraph to the last table cell before exporting the document.

For instance:

BlockCollection footerContent = this.document.Sections.First().Footers.Default.Blocks;
Table footerTable = footerContent.First() as Table;
footerTable.Rows.Last().Cells.First().Blocks.AddParagraph();

Unplanned
Last Updated: 08 Dec 2020 09:57 by ADMIN
Created by: Simi
Comments: 0
Category: WordsProcessing
Type: Feature Request
0
In MS Word, the users can change the background color of the page. 

A 'w:background' property is applied to the whole document in DOCX, and this property is used as a page color in Paged layout mode, and as a background color in Web layout mode. 
Unplanned
Last Updated: 04 Dec 2020 09:21 by ADMIN
ADMIN
Created by: Deyan
Comments: 4
Category: WordsProcessing
Type: Feature Request
18
Support for table styles with different properties for first/last row and column, row bandings.
Unplanned
Last Updated: 03 Dec 2020 15:18 by ADMIN
When exporting a List level, which defines a Tab character between the numbering symbol and the paragraph text, Tab width should be calculated considering a Tab Stop implicitly created from the hanging indent of the List level. However, such a Tab Stop is not implicitly created, which leads to incorrectly calculated Tab distance when exporting to PDF.
Completed
Last Updated: 03 Dec 2020 07:44 by ADMIN
Release R1 2020

When the value contains a semicolon the HTML style property values are omitted on import:

<th width ='12%;' ...>

Currently, setting it without semicolon imports the value successfully:

<th width ='12%' ...>

Completed
Last Updated: 02 Dec 2020 09:29 by ADMIN
Release R1 2021

Currently, the hyperlink is exported not as hyperlink text only but additionally, all the field data is included.

Steps to reproduce:

  1. Insert a hyperlink to the RadFlowDocument
    editor.InsertHyperlink(text:"telerik", uri:"http://www.telerik.com", isAnchor:false, toolTip:"Telerik site");
  2. Export to plain text using the TxtFormatProvider.

Actual:  HYPERLINK "http://www.telerik.com" \o "Telerik site" Telerik
Expected: Telerik

Workaround:

IEnumerable<Run> runs = document.EnumerateChildrenOfType<Run>();
foreach (Run run in runs.ToList())
{
	if (run.Text.Trim().StartsWith("HYPERLINK"))
	{
		run.Paragraph.Inlines.Remove(run);
	}
}

Unplanned
Last Updated: 01 Dec 2020 09:59 by ADMIN
The images in header are not transparent when exporting to PDF
Unplanned
Last Updated: 27 Nov 2020 20:47 by ADMIN
When exporting a Run element with Character properties and Tab character, the Character properties are not respected when exporting the Tab to PDF.
Unplanned
Last Updated: 25 Nov 2020 20:34 by ADMIN
Created by: Erich ÄŒonka
Comments: 0
Category: WordsProcessing
Type: Feature Request
0

From the Office Open XML specification:

gridAfter (Grid Columns After Last Cell):

This element specifies the number of grid columns in the parent table's table grid which shall be left after the last cell in the table row. 

gridBefore (Grid Columns Before First Cell): 

This element specifies the number of grid columns in the parent table's table grid which must be skipped before the contents of this table row (its table cells) are added to the parent table. [This property is used to specify tables whose leading edge (left for left-to-right tables, right for right-to-left tables) does not start at the first grid column (the same shared edge)]

Completed
Last Updated: 24 Nov 2020 14:23 by ADMIN
Release R1 2021
A NullReferenceException is thrown while trying to resolve the references inside a document whose main document part is not named "document.xml"
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.
Unplanned
Last Updated: 20 Nov 2020 07:42 by ADMIN
Created by: Lance
Comments: 0
Category: WordsProcessing
Type: Feature Request
1
Implement a MarkdownFormatProvider, which will allow import/export from/to markdown format.
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 ).
Unplanned
Last Updated: 09 Nov 2020 10:24 by ADMIN
WordsProcessing: base64 image size is set to negative infinity when importing from HTML.
Unplanned
Last Updated: 04 Nov 2020 07:33 by ADMIN
Removing a row from a table with merged cells leaves the table with missing cells
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.
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: 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.