Declined
Last Updated: 07 Sep 2017 06:45 by ADMIN
Unplanned
Last Updated: 26 Jan 2017 15:09 by ADMIN
KeyNotFoundException is thrown when importing RTF document where single font info is not declared in group, for example the following RTF doesn't work:
{\rtf1\ansi\ansicpg1250\deff0{\fonttbl\f0\fswiss Helvetica;}\f0\pard test\par}

while the following works:
{\rtf1\ansi\ansicpg1250\deff0{\fonttbl{\f0\fswiss Helvetica;}}\f0\pard test \par}

This is valid according to RTF specification, which allows omission of the group when only:
<fonttbl>  '{' \fonttbl (<fontinfo> | ('{' <fontinfo> '}'))+ '}'
Unplanned
Last Updated: 13 Dec 2016 13:21 by ADMIN
When a document produced with WordsProcessing is validated with OpenXML Validator from OpenXML SDK, errors are found.

While documents are valid according to the specification, Open XML SDK Validation shows errors related to the order of elements, etc. Resolve all errors, so DOCX documents pass validation.
Completed
Last Updated: 24 Jun 2016 14:06 by ADMIN
Bookmark starts and ends that are not the child of a paragraph or table cannot be imported.
Declined
Last Updated: 13 Sep 2017 06:12 by ADMIN
ADMIN
Created by: Deyan
Comments: 1
Category: WordsProcessing
Type: Feature Request
0

			
Declined
Last Updated: 30 Jan 2017 07:34 by ADMIN
Completed
Last Updated: 17 Aug 2016 15:22 by ADMIN
Completed
Last Updated: 01 Sep 2021 12:10 by ADMIN
Release R1 2021
When the indentation of a paragraph is coming from a list, the RTF format provider applies them to the paragraph as local properties.

This affects all conversions of documents containing lists from RTF to HTML.


Workaround: After importing the document check if the indentation of the paragraph is the same as the one coming from the list. Here is example on how this could be done:

RtfFormatProvider provider = new RtfFormatProvider(); 
RadFlowDocument document = provider.Import(stream); 

foreach (Paragraph paragraph in document.EnumerateChildrenOfType<Paragraph>()) 
{ 
List list = this.document.Lists.GetList(paragraph.ListId); 
if (paragraph.Indentation.HangingIndent == list.Levels[0].ParagraphProperties.HangingIndent.LocalValue) 
{ 
paragraph.Indentation.HangingIndent = Paragraph.HangingIndentPropertyDefinition.DefaultValue.Value; 
} 

if (paragraph.Indentation.FirstLineIndent == list.Levels[0].ParagraphProperties.FirstLineIndent.LocalValue) 
{ 
paragraph.Indentation.FirstLineIndent = Paragraph.FirstLineIndentPropertyDefinition.DefaultValue.Value; 
}
}
Declined
Last Updated: 22 Mar 2017 08:59 by ADMIN
Created by: Nathan Kathira
Comments: 1
Category: WordsProcessing
Type: Feature Request
0
It would be nice to have the ability to search text in documents.

Use case:
I needed to replace some keywords with images. I can insert image at the current position, but there is no way to insert it after some text.
Unplanned
Last Updated: 19 Feb 2018 09:27 by ADMIN
Exporting to PDF of a table with a first cell having preferred width of 100% and a second cell having preferred width of auto will result in missing the second cell.
Unplanned
Last Updated: 05 Oct 2016 10:07 by ADMIN
Table's layout type is imported as FixedWidth when it should be imported as AutoFit. The following RTF tags are not respected:

trftsWidthN
trwWidthBN
trftsWidthBN
trwWidthAN
trftsWidthAN
trwWidthtrftsWidthN
Unplanned
Last Updated: 20 Sep 2017 13:31 by ADMIN
ADMIN
Created by: Todor
Comments: 0
Category: WordsProcessing
Type: Feature Request
0
Add Borders property for a Run element and in CharacterProperties. The same is implemented for Paragraph, but in OOXML it could be applied over a Run element as well.
Declined
Last Updated: 10 Oct 2016 11:10 by ADMIN
The item is duplicated. Please, follow the item at https://feedback.telerik.com/Project/184/Feedback/Details/203066
Unplanned
Last Updated: 04 Jan 2017 07:25 by ADMIN
When list level items are empty - <li></li> - they are not imported as empty paragraphs in list. The expected is that a Paragraph, associated to a list to be imported.
Unplanned
Last Updated: 07 Sep 2016 12:39 by ADMIN
In MS Word, decimal tab stops affect paragraph layout in table cells even if tab character is not present. The reasoning is that it's hard to insert tab symbol in table cell, as pressing Tab navigates to the next cell (Ctrl+Tab should be used). 

When decimal tab stop is present for a Paragraph, and the paragraph is in a TableCell, the content of the paragraph should be aligned to the decimal tab stop (analogically to the case when the Paragraph is not in a table cell and it contains tab character.
Unplanned
Last Updated: 08 Sep 2016 08:28 by ADMIN
All character formatting (font size, font family, etc.) applied to empty cell is lost when:

- document with such formatting applied is exported to RTF

- document with such formatting is imported from RTF.
Unplanned
Last Updated: 05 Oct 2016 13:27 by ADMIN
Span or paragraph style properties are not evaluated correctly when the paragraph is inside a table and there are no other local values than the one applied in the table style.

This could lead to different rendering of the document when exporting to RTF, PDF and HTML formats.
Unplanned
Last Updated: 03 Jan 2017 09:12 by ADMIN
Currently empty paragraphs are exported to HTML with one space inside. Such paragraphs are not rendered by the browser. Such paragraph should be exported to HTML with one non-breaking space (@nbsp;) inside to ensure that they are visible in the browser.

Workaround: manually add nbsp-s in all empty paragraphs:
paragraph.Inlines.AddRun("\u00a0");


Steps to reproduce:
- Create document with empty paragraphs:

                        var document = new RadFlowDocument();
                        Section section = document.Sections.AddSection();
                        section.Blocks.AddParagraph();
                        section.Blocks.AddParagraph();
                        section.Blocks.AddParagraph();
                        section.Blocks.AddParagraph().Inlines.AddRun("test");

- Export it to HTML.

- Load the HTML in a browser.

Expected: The word 'test' is preceded by 3 empty rows.

Actual: The word 'test' is on the first row.
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.
Declined
Last Updated: 26 Jun 2017 12:40 by ADMIN
ADMIN
Created by: Martin Ivanov
Comments: 0
Category: WordsProcessing
Type: Feature Request
0
Add support for shapes with textual content. These are described in OpenXML specification - txbx (Textual contents of shape). 

Such shape can be added to a Word document using the Insert -> Text -> Text Box

The item is closed as duplicate. Please, follow the feature request for shapes at https://feedback.telerik.com/Project/184/Feedback/Details/190116