Unplanned
Last Updated: 17 Apr 2024 11:56 by Nathan
Calculate TOC page numbering based on page number fields.
In Development
Last Updated: 15 Apr 2024 12:43 by ADMIN
Created by: IGNACIO
Comments: 0
Category: WordsProcessing
Type: Feature Request
1
The AlternateContent element is used to store content which is not defined by the specification.
Unplanned
Last Updated: 10 Apr 2024 14:50 by Daniel
The TOC should include the numbers of headings with a list level.
Completed
Last Updated: 21 Mar 2024 05:53 by ADMIN
Release 2024.1.305 (2024 Q1)

Handle import of documents with self-referring styles.

As a workaround, you can go through the RTF document structure of a single file and utilize Regex to resolve the self-referring styles like this:

string rtf = File.ReadAllText("inputFile.rtf");
rtf = FixSelfReferringStyles(rtf);

Telerik.Windows.Documents.Flow.FormatProviders.Rtf.RtfFormatProvider provider = new Telerik.Windows.Documents.Flow.FormatProviders.Rtf.RtfFormatProvider(); 

 var document = provider.Import(rtf);

...

private static string FixSelfReferringStyles(string rtf)
{
    string regexString = @"{\\s([0-9]+)[^}]*\\slink([0-9]+)";

    var matches = Regex.Matches(rtf, regexString);
    foreach (Match match in matches)
    {
        if (match.Groups[1].Value == match.Groups[2].Value)
        {
            var oldValue = match.Groups[0].Value;
            var newValue = oldValue.Replace(@" \slink" + match.Groups[1].Value, string.Empty);
            rtf = rtf.Replace(oldValue, newValue);
        }
    }

    return rtf;
}

 

Unplanned
Last Updated: 19 Mar 2024 12:12 by ADMIN
ADMIN
Created by: Tanya
Comments: 2
Category: WordsProcessing
Type: Feature Request
10
There are 27 types of border styles in the Open XML specification and they are implemented in RadFlowDocument. Only borders None and Single are supported when exporting to PDF, all others are treated as None and stripped.
Unplanned
Last Updated: 07 Mar 2024 12:51 by ADMIN
At this point, the justify alignment is not supported. Provide the ability to export text with this setting.
Unplanned
Last Updated: 07 Mar 2024 12:49 by ADMIN
ADMIN
Created by: Deyan
Comments: 2
Category: WordsProcessing
Type: Feature Request
11

			
Unplanned
Last Updated: 07 Mar 2024 05:55 by ADMIN
ADMIN
Created by: Tanya
Comments: 2
Category: WordsProcessing
Type: Feature Request
13
Add support for horizontal lines in documents.

In DOCX, such lines are defined using the legacy VML definitions:
<w:pict w14:anchorId="324D5836">
  <v:rect id="_x0000_i1025" style="width:0;height:1.5pt" o:hralign="center" o:hrstd="t" o:hr="t" fillcolor="#a0a0a0" stroked="f"/>
</w:pict>
The definitions above and the <hr/> HTML tag are currently not supported and skipped on import, leading to missing horizontal lines in the document.
Unplanned
Last Updated: 23 Feb 2024 14:19 by RainMaker
Created by: RainMaker
Comments: 0
Category: WordsProcessing
Type: Feature Request
0
Unplanned
Last Updated: 12 Feb 2024 11:36 by Joshua
DocxFormatProvider: Persist run properties (rPr) for the start of FieldCharacter.
Unplanned
Last Updated: 27 Dec 2023 07:06 by Sashi
When importing a document containing a Picture SDT with TextProperties an exception is thrown: StructuredDocumentTags.Builders.SdtBuilderFailureException: 'This content control type cannot be inserted around a selected image.'
Unplanned
Last Updated: 22 Dec 2023 14:46 by ADMIN
ADMIN
Created by: Tanya
Comments: 2
Category: WordsProcessing
Type: Feature Request
12
Add support for the All Caps and Small Caps properties of the runs. These properties are currently ommitted on import.
Unplanned
Last Updated: 01 Nov 2023 15:21 by Luca Galbiati
Created by: Luca Galbiati
Comments: 0
Category: WordsProcessing
Type: Feature Request
0
Introduce support for Paragraph Spacing Style Sets.
Unplanned
Last Updated: 23 Oct 2023 06:38 by Andreas
Preserve Footnotes/Endnotes information.
Unplanned
Last Updated: 23 Oct 2023 06:36 by Andreas
Created by: Andreas
Comments: 0
Category: WordsProcessing
Type: Feature Request
1
Preserve Bookmarks information.
Unplanned
Last Updated: 23 Oct 2023 06:31 by Andreas
Created by: Andreas
Comments: 0
Category: WordsProcessing
Type: Feature Request
1
Preserve Fields (Merge Fields, Cross References) information.
Unplanned
Last Updated: 12 Oct 2023 12:14 by Simon
Add a mechanism to replicate the whole row when nested mail merge is executed on a table with only one column.
Unplanned
Last Updated: 02 Oct 2023 09:05 by Salman
Created by: Salman
Comments: 0
Category: WordsProcessing
Type: Feature Request
0
Introduce support for C-CDA (Consolidated Clinical Document Architecture) documents.
Unplanned
Last Updated: 12 Sep 2023 18:33 by Abhishek
Created by: Abhishek
Comments: 0
Category: WordsProcessing
Type: Feature Request
0
Introduce support for macros.
Completed
Last Updated: 08 Sep 2023 12:44 by ADMIN
Release R3 2023
Created by: Fabien
Comments: 1
Category: WordsProcessing
Type: Feature Request
1
Introduce support for importing documents with nested runs.
1 2 3 4 5 6