Completed
Last Updated: 27 Apr 2023 07:35 by ADMIN
Created by: Telerik Admin
Comments: 3
Category: WordsProcessing
Type: Bug Report
1
Header is not imported when it contains image
Unplanned
Last Updated: 18 Apr 2023 09:31 by Blas
The paragraph style is not resolved correctly when importing dot template and replacing content
Declined
Last Updated: 13 Apr 2023 08:28 by ADMIN
Created by: Rohit
Comments: 1
Category: WordsProcessing
Type: Feature Request
1
Is there any option to set line-height for text in RadFlowDocument Editor?
Unplanned
Last Updated: 07 Apr 2023 08:40 by yanjun
Respect the floating image wrapping style when inside a table and it is behind or in front of text.
Unplanned
Last Updated: 05 Apr 2023 10:13 by ADMIN

Similar to https://feedback.telerik.com/reporting/1356710-rendering-to-xlsx-should-not-add-bom-to-xml-files :

DOCX files exported with DocxFormatProvider contain a BOM in every exported XML file. Some programs fail to load those DOCX files.

Please remove the BOM, or add a toggle in DocxExportSettings.

Completed
Last Updated: 31 Mar 2023 12:26 by ADMIN
Release R2 2023
NullReferenceException when importing a watermark with no opacity
Unplanned
Last Updated: 06 Mar 2023 09:12 by Margret
DocFormatpRovider: StackOverflowException when importing doc documents with particular paragraph properties.
Unplanned
Last Updated: 02 Mar 2023 15:55 by Jase
Table borders overlap and are not visible when set through the API for certain MS Word themes
Unplanned
Last Updated: 01 Mar 2023 15:45 by Selva
The text inside content controls that are part of a table cell is not exported correctly when replaced.
Completed
Last Updated: 27 Feb 2023 10:40 by ADMIN
Release R1 2023 SP1
Unplanned
Last Updated: 27 Feb 2023 07:29 by Nikko
When converting to pdf and the document contains a section break after a page break additional page is added
Unplanned
Last Updated: 21 Feb 2023 08:09 by Philip

If a TOC field uses TC fields only (with the \f switch) and there is a tab in the text of the TC field, after mail merge, the tab becomes really wide. If the file is opened in word and the field is updated, everything goes back to normal.

Expected:

Actual:

 

A possible workaround is to set the fields to be updated on opening of the document:

DocxFormatProvider provider = new DocxFormatProvider();
provider.ExportSettings.AutoUpdateFields= true;

Completed
Last Updated: 14 Feb 2023 12:43 by ADMIN
Release R1 2023 SP1
The Table Of Contents (TOC) is populated with additional elements when StyleLevel is set.
Completed
Last Updated: 14 Feb 2023 11:18 by ADMIN
Release R1 2023 SP1
Importing a TOC field with /t switch (containing a style like "Heading 1") causes IndexOutOfRangeException.
Completed
Last Updated: 14 Feb 2023 06:48 by ADMIN
Release R1 2023 SP1
ArgumentException when importing a document and the culture is set to "sv-SE".
Completed
Last Updated: 13 Feb 2023 13:49 by ADMIN
Release R1 2023 SP1
InvalidOperationException (Sequence contains no elements) when updating TOC field in a document
Unplanned
Last Updated: 09 Feb 2023 11:00 by Amit

When a span has nested strikethrough and underline tags applied to it only the inner tag is respected.

This HTML:

<u><del>UnderlineStrikethrough</del></u>

results in:

UnderlineStrikethrough

And this HTML:

<del><u>UnderlineStrikethrough</u></del>

results in:

UnderlineStrikethrough

 

As a possible workaround, you can add some text placeholder to the span that needs both "underline" and "strikethrough" and after import set the properties, and remove the placeholder text.

Sample HTML:

<u><del>##PlaceholderStart##UnderlineStrikethrough##PlaceholderEnd##</del></u>

after import, execute this:

const string PlaceholderTextStart = "##PlaceholderStart##";
const string PlaceholderTextEnd = "##PlaceholderEnd##";
RadFlowDocumentEditor editor = new RadFlowDocumentEditor(document);
Regex regex = new Regex(PlaceholderTextStart + "[a-zA-Z]*" + PlaceholderTextEnd);
var results = editor.FindAll(regex);
foreach (var result in results)
{
    foreach (var run in result.Runs)
    {
        run.Properties.Strikethrough.LocalValue = true;
        run.Properties.UnderlinePattern.LocalValue = Telerik.Windows.Documents.Flow.Model.Styles.UnderlinePattern.Single;
        run.Text = run.Text.Replace(PlaceholderTextStart, string.Empty);
        run.Text = run.Text.Replace(PlaceholderTextEnd, string.Empty);
    }
}

 

Unplanned
Last Updated: 07 Feb 2023 08:58 by Sachin
Merging documents with bookmarks causes an error message when opening with Word.
Declined
Last Updated: 27 Jan 2023 11:11 by ADMIN
Created by: Vladimír
Comments: 1
Category: WordsProcessing
Type: Feature Request
1

When exporting RadFlowDocument that contains TOC field, resultant PDF document should contain link point to the page shown in TOC.


note this is different from already existing request as this request is to link to the page, which is possible in telerik PDF export as demonstrated here and not to the bookmark.

Unplanned
Last Updated: 23 Jan 2023 09:32 by ADMIN
Table Cell width is increased after converting from RTF to HTML