Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
Release R3 2022 SP1
When a document with a field is exported to html and the document has a field without a separator, part of the html is not exported. 
Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
Release R3 2022 SP1
When the document starts with a section whose break type is Continuous, and the first element in this section is a floating image, InvalidOperationException is thrown on PDF export.
Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
Release R3 2022 SP1

Importing html image with no source and then exporting it to pdf causes an exception, instead of omitting the faulty image.

Such images can be stripped using the following workaround:

List<ImageInline> images = this.document.EnumerateChildrenOfType<ImageInline>().ToList();

foreach (var image in images)
{
      if (image.Image.ImageSource == null)
      {
               image.Paragraph.Inlines.Remove(image);
      }
}

Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
Release R3 2022 SP1
Created by: SAI RADHA MANI
Comments: 1
Category: WordsProcessing
Type: Feature Request
0

You can add captions to figures, equations, or other objects.

From the Office Open XML File Formats Specification: This element specifies the contents and positioning for captions which can be used to automatically label objects in a WordprocessingML document. A caption is a string that labels an object included in a WordprocessingML document, and typically consists of a string plus a field which numbers this item within a collection of similar objects.

Similar functionality can be achieved using the CustomCodeField:

RadFlowDocumentEditor editor = new RadFlowDocumentEditor(document);
using (Stream stream = File.OpenRead("Image1.jpg"))
{
	ImageInline image = editor.InsertImageInline(stream, "jpg");
	editor.InsertBookmark("Image", image, image);
}

editor.InsertBreak(BreakType.LineBreak);
editor.InsertText("Figure ");
editor.InsertField("SEQ Image", "Update Figure Number");

Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
Release R1 2023
When more than one bookmark is in the same empty paragraph the PageRefField is not successfully updated.
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>

Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
Release R1 2023
ADMIN
Created by: Martin
Comments: 0
Category: WordsProcessing
Type: Feature Request
0
A table of authorities lists the references in a legal document, along with the numbers of the pages the references appear on. To create a table of authorities a special TA (Table of Authorities Entry) field (TaField) should be inserted in the document.
Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
Release R1 2023
DocFormatProvider: Exception when importing Doc file in Net Core. KeyNotFoundException: 'The given key '0' was not present in the dictionary.'
Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
Release R1 2023
Exception when converting HTML to PDF when the HTML contains an image with no source.
Completed
Last Updated: 18 Jan 2023 10:59 by Vladimír
Release R1 2023
ADMIN
Created by: Deyan
Comments: 9
Category: WordsProcessing
Type: Feature Request
42
This feature includes: table of figure, table of tables etc.

TOC field contains PageRef fields inside it. To update it, we will need pagination (layout) support and PageRef fields implementation. Also TOC update can be influenced by TC fields presence in the document.

Implement export to PDF.
Unplanned
Last Updated: 17 Jan 2023 07:50 by ADMIN
Created by: Grinden
Comments: 4
Category: WordsProcessing
Type: Feature Request
7

The non-breaking hyphen element is currently not supported in the model and is stripped when importing the document.


Unplanned
Last Updated: 09 Jan 2023 09:11 by ADMIN
ADMIN
Created by: Deyan
Comments: 8
Category: WordsProcessing
Type: Feature Request
22
Introduce new section properties which are responsible for defining columns in the section.
Unplanned
Last Updated: 09 Jan 2023 07:31 by Goutham
Created by: Goutham
Comments: 0
Category: WordsProcessing
Type: Bug Report
0
Empty div elements are not imported.
Unplanned
Last Updated: 04 Jan 2023 16:25 by ADMIN
ADMIN
Created by: Deyan
Comments: 5
Category: WordsProcessing
Type: Feature Request
28
Implement import of PDF to RadFlowDocument, using PdfFormatProvider. This would require text recognition (including determining where paragraphs end as opposed to new line inserted because of the layout) and table recognition.

This will allow conversion of PDF documents to docx, RTF and HTML.
Unplanned
Last Updated: 23 Dec 2022 10:02 by Charles
HtmlFormatProvider does not format super- and subscript content size on export
Unplanned
Last Updated: 20 Dec 2022 15:54 by Charles
When an HTML document is exported with IndentDocument, there are unwanted whitespaces in the content.
Unplanned
Last Updated: 21 Nov 2022 14:01 by Floris
Created by: Floris
Comments: 0
Category: WordsProcessing
Type: Feature Request
2
Converting from Docx to Pdf images rotation doesn't stay the same.
Unplanned
Last Updated: 17 Nov 2022 06:55 by Jason
Created by: Jason
Comments: 0
Category: WordsProcessing
Type: Feature Request
0
Add support for mirror margins. Add support for the "2 Pages per sheet" and "Bok fold" settings as well. 
Completed
Last Updated: 07 Nov 2022 14:59 by ADMIN
Release R3 2022 SP1
Created by: Andres
Comments: 8
Category: WordsProcessing
Type: Feature Request
2
The .bin extension represents a binary file format which can contain images as well. When a document containing such an image is imported and exported using WordsProcessing, the image is lost and the default 'no-image' placeholder is used in its place.
Unplanned
Last Updated: 25 Oct 2022 05:45 by ADMIN
ADMIN
Created by: Tanya
Comments: 4
Category: WordsProcessing
Type: Feature Request
19
The custom document properties enable the users to define their own properties to the document or use one of the predefined. 

In most of the cases, the document variables can be used instead. More information about them you can find at http://docs.telerik.com/devtools/document-processing/libraries/radwordsprocessing/concepts/fields/document-variables