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: 30 Sep 2022 11:26 by ADMIN
Release R3 2022 SP1
Importing document with ShapeLocks leads to InvalidCastException:

Unable to cast object of type 'Telerik.Windows.Documents.DrawingML.ShapeLocks' to type 'Telerik.Windows.Documents.DrawingML.ConnectionShapeLocks'.'
Completed
Last Updated: 14 Sep 2022 13:52 by ADMIN
Release R3 2022 SP1
When a document containing a hyperlink before bookmark and it is exported to PDF or UpdateField(s) method is called an exception is thrown: "System.InvalidCastException: 'Unable to cast object of type 'Telerik.Windows.Documents.Fixed.Model.Editing.Layout.HyperlinkEndLayoutElement' to type 'Telerik.Windows.Documents.Fixed.Model.Editing.Layout.TextFragmentLayoutElement'.'"
Unplanned
Last Updated: 21 Sep 2022 13:23 by Ben
NullReferenceException cloning Table element into RadFlowDocument. The document contains some bookmarks as well. 
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
When more than one bookmark is in the same empty paragraph the PageRefField is not successfully updated.
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: 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.'
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: 23 Dec 2022 10:02 by Charles
HtmlFormatProvider does not format super- and subscript content size on export
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.
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 12:43 by ADMIN
Release R1 2023 SP1
The Table Of Contents (TOC) is populated with additional elements when StyleLevel is set.
Unplanned
Last Updated: 07 Feb 2023 08:58 by Sachin
Merging documents with bookmarks causes an error message when opening with Word.
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);
    }
}

 

Completed
Last Updated: 17 May 2023 12:20 by ADMIN
Release R2 2023
The forecolor of table cells text is not preserved when exporting to PDF.
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: 17 May 2023 11:40 by ADMIN
Release R2 2023

Using a RadFlowDocumentEditor to add a page break and then insert a table, adds an additional paragraph in between.

 

As a workaround you can call the CleanParagraphsBeforeTablesOnNewPage() method:

private void CleanParagraphsBeforeTablesOnNewPage()
{
    List<Paragraph> paragraphs = this.flowDocument.EnumerateChildrenOfType<Paragraph>().ToList();
    foreach (var paragraph in paragraphs)
    {
        BlockContainerBase parent = (BlockContainerBase)paragraph.Parent;
        int paragraphIndex = parent.Blocks.IndexOf(paragraph);
        int blocksCount = parent.Blocks.Count;

        bool isAfterPageBreak = paragraphIndex > 0 && this.PreviousBlockEndsWithPageBreak(parent.Blocks[paragraphIndex - 1]);

        int nextIndex = paragraphIndex + 1;
        bool nextBlockIsTable = nextIndex < blocksCount && parent.Blocks[nextIndex] is Table;

        if (isAfterPageBreak && nextBlockIsTable)
        {
            parent.Blocks.Remove(paragraph);
        }
    }
}

private bool PreviousBlockEndsWithPageBreak(BlockBase blockBase)
{
    bool isLastInlinePageBreak = false;
    bool isParagraph = blockBase is Paragraph;
    if (isParagraph)
    {
        Paragraph paragraph = (Paragraph)blockBase;
        InlineBase lastInline = paragraph.Inlines.Last();

        bool isBreak = lastInline is Break;
        if (isBreak)
        {
            isLastInlinePageBreak = ((Break)lastInline).BreakType == BreakType.PageBreak;
        }
    }

    return isLastInlinePageBreak;
}

Completed
Last Updated: 17 May 2023 14:44 by ADMIN
Release R2 2023
KeyNotFoundException when importing an rtf that references a font that is not declared. 
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.