Unplanned
Last Updated: 17 Apr 2024 11:56 by Nathan
Calculate TOC page numbering based on page number fields.
Unplanned
Last Updated: 10 Apr 2024 14:50 by Daniel
The TOC should include the numbers of headings with a list level.
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.
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: 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: 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.
Unplanned
Last Updated: 23 Aug 2023 08:25 by ADMIN
ADMIN
Created by: Vladislav
Comments: 0
Category: WordsProcessing
Type: Feature Request
12
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
7
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.
Completed
Last Updated: 08 Sep 2023 10:10 by ADMIN
Release R3 2023
Handle HTML import of base64 images with no data source.
Completed
Last Updated: 08 Sep 2023 12:43 by ADMIN
Release R3 2023
Introduce support for importing documents with fields inside of runs.
1 2 3 4 5 6