Completed
Last Updated: 23 Aug 2023 10:01 by ADMIN
ADMIN
Created by: Deyan
Comments: 23
Category: WordsProcessing
Type: Feature Request
62
Add support for shapes, and especially for shapes with textual content. 
In OOXML, shapes are represented by the wps:wsp element, and shapes with textual content by <wps:txbx>, <w:txbxContent>.
Such shape can be added to a Word document using the Insert -> Text -> Text Box -> Draw Text Box, or through a shape's context menu -> Add Text.

Do not confuse these shapes with Text/Rich Text content controls (see https://feedback.telerik.com/Project/184/Feedback/Details/190057 )
Unplanned
Last Updated: 23 Aug 2023 08:25 by ADMIN
ADMIN
Created by: Vladislav
Comments: 0
Category: WordsProcessing
Type: Feature Request
13
Add support for TextBox shapes.
Unplanned
Last Updated: 23 Aug 2023 08:23 by ADMIN
ADMIN
Created by: Vladislav
Comments: 0
Category: WordsProcessing
Type: Feature Request
1
Expose a way to add new shapes to the document, modify them, or delete them.
Unplanned
Last Updated: 23 Aug 2023 08:19 by ADMIN
ADMIN
Created by: Vladislav
Comments: 0
Category: WordsProcessing
Type: Feature Request
10
Add support for exporting shapes to PDF.
Unplanned
Last Updated: 21 Aug 2023 06:57 by Becht Service Acount

With the current implementation of the RadFlowDocumentEditor`s CharacterFormatting.FontWeight.LocalValue accepts only FontWeights.Bold and FontWeights.Normal and throws an exception when setting different weights (ex. Black, Thin, etc.).

Unplanned
Last Updated: 18 Aug 2023 06:59 by sitefinitysteve
Created by: sitefinitysteve
Comments: 0
Category: WordsProcessing
Type: Feature Request
0
This element specifies a shape group in WordprocessingML.
Unplanned
Last Updated: 14 Aug 2023 12:04 by Ray
Arabic Letter Mark (ALM) is a non-printing character but is visible after PDF export.
Unplanned
Last Updated: 02 Aug 2023 07:03 by ADMIN
ADMIN
Created by: Boby
Comments: 4
Category: WordsProcessing
Type: Feature Request
6
Introduce Run.IsHidden property or similar, which hides the text in the document.

In MS Word, text is hidden using the Home -> Font -> Font -> Effects -> Hidden. In the Rtf format, such text is preceded (marked) with a '\v' tag. In OOXML, the tag is <vanish/>. The display: none; style from HTML is mapped to hidden text when document is converted to DOCX.

Hidden text is visualized with dotted underline when formatting symbols are shown. Hidden text is not exported to PDF.
Unplanned
Last Updated: 18 Jul 2023 13:13 by ADMIN

Is there a way to prevent font embedding in the RadFlow methodology or is utilizing RadFixed the only way to have a reasonably sized PDF document?

Unplanned
Last Updated: 14 Jul 2023 09:09 by Adam
Implement support for 'content' CSS property.
Unplanned
Last Updated: 06 Jul 2023 06:29 by Christian
Introduce support for languages in the document styles. 
Unplanned
Last Updated: 06 Jul 2023 06:23 by Pavel
Add support for importing of width property of <p> and <div> elements.
Unplanned
Last Updated: 05 Jul 2023 13:12 by Fubin
Table columns are not the expected width after export while having large cropped images as content and all table content is resized. The input document's images are not resized and are too big to fit on the table and thus are cropped. 
Completed
Last Updated: 05 Jul 2023 08:14 by ADMIN
Release R2 2023 SP1
PdfFormatProvider: NullReferenceException when exporting bookmarks spanning more than one paragraph.
Completed
Last Updated: 05 Jul 2023 07:14 by ADMIN
Release R2 2023 SP1
When some character is not supported by the font, the fallback mechanism should try finding some other font that is capable of rendering the unsupported character. However, RadPdfProcessing fallback mechanism does not always find the correct font which sometimes result in wrong glyph visualization or in missing glyph.

Workaround: Font that supports these special characters may be used. This way the fallback mechanism will not be needed to export the PDF text.
Completed
Last Updated: 04 Jul 2023 11:55 by ADMIN
Release R2 2023 SP1
When a paragraph is placed inside a list item (<li> tag), the paragraph properties are not applied to it on import.
Completed
Last Updated: 04 Jul 2023 11:18 by ADMIN
Release R3 2023 SP1
When text content (text in paragraph, text in span) in HTML contains line break (\r, \n, or \r\n), it should be imported as space. Instead, the new lines are currently removed. 

For example, <p>first\nsecond</p> (line feed between the words) is imported as run with content "firstsecond" instead of "first second".
Unplanned
Last Updated: 28 Jun 2023 09:49 by Fubin

When a document has a list in it and the element containing it is cloned into another document, there is a key not found exception if you try to export the second document.

            RadFlowDocument document = new RadFlowDocument();
            if (tableDocument.Sections.First().Blocks.First() is Table workSheetTable)
            {
                Table clonedTable = workSheetTable.Clone(document);
                var newSection = document.Sections.AddSection();
                newSection.Blocks.Add(clonedTable);
            }

            byte[] pdfBytes = pdfProvider.Export(document);
            byte[] docBytes = docxProvider.Export(document);

Completed
Last Updated: 19 Jun 2023 07:07 by ADMIN
Release LIB 2023.2.619 (19 Jun 2023)
ArgumentOutOfRangeException: "Index was out of range" when inserting a table right after an empty paragraph.
Declined
Last Updated: 29 May 2023 10:51 by ADMIN
The Footer's size is sometimes not respected.