Unplanned
Last Updated: 10 Feb 2021 14:35 by ADMIN
 Add an option to export the content controls as a form fields. 
Unplanned
Last Updated: 08 Feb 2021 16:06 by ADMIN

Absolute positioning of images, defined in the class stylesheet, is not respected.

Unplanned
Last Updated: 28 Jan 2021 12:49 by ADMIN

When exporting to a PDF filea document with a header containing a watermark, set by a shape, the rest of the header content is skipped and the header is exported with default margin values.

A possible workaround could be to set the watermark as an image.

Unplanned
Last Updated: 22 Feb 2021 14:31 by ADMIN
Created by: Vladislav
Comments: 0
Category: WordsProcessing
Type: Feature Request
0

This element specifies that an absolute position tab character shall be placed at the current location in the run content.

Completed
Last Updated: 29 Jan 2021 15:31 by ADMIN
Release R1 2021 SP1

The missing feature leads to this unwanted behavior:

  • When there is content control, which generates content on interaction, and it has some custom run properties set to it, they are lost when the user modifies it.

 

As a workaround, you need to apply a custom style (with the desired run properties) and apply it to the content control.

Unplanned
Last Updated: 22 Jan 2021 09:00 by ADMIN

When a watermark needs more space than the available on the page, it should be resized. At this point, part of its content can be cut off as it falls outside of the page bounds.

Workaround: Decrease the size of the watermark prior to exporting it to PDF:

foreach (var section in this.document.Sections)
{
    Header header = section.Headers.Default;
    if (header != null)
    {
        foreach (Watermark watermark in header.Watermarks)
        {
            if (watermark.TextSettings != null && watermark.TextSettings.Width > section.PageSize.Width)
            {
                watermark.TextSettings.Width = section.PageSize.Width;
            }
        }
    }
}

Completed
Last Updated: 26 Jan 2021 12:11 by ADMIN
Release R1 2021 SP1
When the URI source applied to the image cannot be parsed as a Path object to obtain its extension, an ArgumentException is thrown.
Completed
Last Updated: 26 Jan 2021 10:28 by ADMIN
Release R1 2021 SP1
The exception is thrown while importing an image that has any value for height property applied through a style.
Unplanned
Last Updated: 15 Jan 2021 10:29 by ADMIN

When importing a document with a style set in a parent <div> element its children`s content doesn't inherit it.

Steps to reproduce:

  1. Import the following HTML string:
    <div style="background-color: green;">
    	<h1>Test heading</h1>
    	<div>Test div</div>
    </div>
  2. Export it as PDF (or any other supported format)

Actual vs Expected:
 

Unplanned
Last Updated: 01 Nov 2021 08:11 by ADMIN
Currently, when exporting documents containing RTL (right-to-left) text, the flow direction is not respected and it is set to LTR.
Unplanned
Last Updated: 18 Dec 2020 10:42 by ADMIN
According to the Office Open XML specification, the border thickness should be preserved in a DOCX file using a positive whole number, whose contents consist of measurement in eighths of a point. However, the current logic of WordsProcessing works with double values that might result in fractional numbers while converting them. 
Unplanned
Last Updated: 15 Dec 2020 15:33 by ADMIN

Currently, the content of the span of such elements  is imported:

<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>
	<div id="progressBar" style="width: 100%; display: none;" class="themed-progressbar k-widget k-progressbar k-progressbar-horizontal" data-role="progressbar">
		<span class="k-progress-status-wrap k-progress-end"><span class="k-progress-status">100%</span></span>
		<div class="k-state-selected k-complete" style="width: 100%;">
			<span class="k-progress-status-wrap k-progress-end" style="width: 100%;"><span class="k-progress-status">100%</span></span>
		</div>
	</div>
</body>
</html

Actual: the content of the spans is not skippet (100% 100%)

Expected: to be skipped

 

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) 

 

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: 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.
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: 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: 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);
	}
}