Duplicated
Last Updated: 21 May 2020 11:00 by ADMIN
Created by: Martin
Comments: 0
Category: WordsProcessing
Type: Feature Request
1

Revisions in WordprocessingML provide a mechanism for storing information about the evolution of the
document (i.e. the set of modifications made to a document by one or more authors).

Completed
Last Updated: 31 Oct 2023 15:07 by ADMIN
Release R3 2023 SP1
Fonts that are not surrounded by curly braces cannot be imported in the RTF format
Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
Release R1 2023
If the document containing a shape with opacity set the FormatException is thrown. Check the following code snippet:
<w:pict ...>
  <v:shape ...>
	<v:fill opacity="39151f"/>
	<v:path .../>
	<w10:wrap anchorx="page" anchory="page"/>
  </v:shape>
</w:pict>

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.
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: 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: 31 Jul 2020 06:39 by ADMIN
Right alignment in a table does not work when converting from html to pdf
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: 12 Aug 2020 06:54 by ADMIN

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

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: 04 Nov 2020 07:33 by ADMIN
Removing a row from a table with merged cells leaves the table with missing cells
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"
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: 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: 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: 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: 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: 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: 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: 08 Feb 2021 16:06 by ADMIN

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