Completed
Last Updated: 07 Nov 2022 14:19 by ADMIN
Release R3 2022 SP1

When using the Clone function from RadFlowDocument, the below exception is thrown :

[2022-10-07T13:06:32.329Z] Error: System.ArgumentException: The document element is associated with another document. (Parameter 'item')
   at Telerik.Windows.Documents.Flow.Model.Collections.DocumentElementCollection`2.VerifyDocumentElementOnInsert(T item)
   at Telerik.Windows.Documents.Flow.Model.Collections.DocumentElementCollection`2.AddClonedChildrenFrom(DocumentElementCollection`2 fromCollection, CloneContext cloneContext)
   at Telerik.Windows.Documents.Flow.Model.Paragraph.CloneCore(CloneContext cloneContext)
   at Telerik.Windows.Documents.Flow.Model.Collections.DocumentElementCollection`2.AddClonedChildrenFrom(DocumentElementCollection`2 fromCollection, CloneContext cloneContext)
   at Telerik.Windows.Documents.Flow.Model.Footer.CloneCore(CloneContext cloneContext)
   at Telerik.Windows.Documents.Flow.Model.HeadersFootersBase`1.CloneHeadersFootersFrom(HeadersFootersBase`1 headersFooters, CloneContext cloneContext)
   at Telerik.Windows.Documents.Flow.Model.Section.ClonePropertiesAndHeadersFooters(CloneContext cloneContext)
   at Telerik.Windows.Documents.Flow.Model.Section.CloneCore(CloneContext cloneContext)
   at Telerik.Windows.Documents.Flow.Model.Collections.DocumentElementCollection`2.AddClonedChildrenFrom(DocumentElementCollection`2 fromCollection, CloneContext cloneContext)
   at Telerik.Windows.Documents.Flow.Model.RadFlowDocument.CloneCore(CloneContext cloneContext)
   at Telerik.Windows.Documents.Flow.Model.RadFlowDocument.Clone()
   at Perspex.Shared.OOPGenerator.OOPGenerator.SetWordDocumentTemplate(Schools school, SchoolYear schoolyear) in D:\projecten\cip\Perspex\src\Perspex.Shared\OOPGenerator\OOPGenerator.cs:line 62

It occurs after I upgraded to the latest version (2022.3.906) of RAD Document processing. In the previous version it worked as expected.

Steps I take to reproduce the issue :

1) Load a word document
2) Clone the document.

Completed
Last Updated: 12 Oct 2022 10:32 by ADMIN
Release R3 2021 SP1
A FileNotFoundException is thrown when importing a file and not having a DrawingML reference. FileNotFoundException: Could not load file or assembly 'Telerik.Windows.Documents.DrawingML'
Completed
Last Updated: 05 Oct 2022 14:18 by ADMIN
Release R3 2022 SP1
Exporting documents with PrintTitles and sheet names containing spaces causes missing PrintTitles.
Declined
Last Updated: 22 Sep 2022 08:59 by ADMIN
Created by: Babu
Comments: 4
Category: Telerik Document Processing
Type: Bug Report
1

1. Line Height is not converted properly.  for example, if we set the line height is 1.5 in angular UI editor, in PDF is not shown properly,

2. Table alignment is not proper -  After resizing the in the angular editor, the same alignment is not converted in PDF. I think colgroup and cols custom tags are not considering while converting the PDF.

Completed
Last Updated: 22 Sep 2022 11:46 by ADMIN
Release R3 2022 SP1
When an encrypted document containing document info is exported, the document info is missing.
Completed
Last Updated: 16 Aug 2022 13:23 by ADMIN
Release LIB 2022.2.822 (22 Aug 2022)
The default ImagePropertiesResolver does not handle the RGB24 pixel format and an exception is thrown.
Unplanned
Last Updated: 03 Aug 2022 06:07 by Anu
Created by: Anu
Comments: 0
Category: Telerik Document Processing
Type: Feature Request
1
Add support for a cross-references field
Completed
Last Updated: 04 Jul 2022 13:48 by ADMIN
Release R3 2022
Importing a document containing many VLookup functions searching in a large column range causes poor performance.
Completed
Last Updated: 04 Jul 2022 09:54 by ADMIN
Release R3 2022
An InvalidOperationException with a message "Unexpected (UnknownRecord) while looking for DV Table insert pos" is thrown when importing specific XLS documents.
Completed
Last Updated: 01 Jul 2022 13:03 by ADMIN
Release R3 2022
If you replace a certain text with one containing multiple lines and you have certain formatting on the replaced element, the resulting lines lose the current formatting for all lines except the first one.
Unplanned
Last Updated: 14 Jun 2022 12:09 by Eleanor
When converting an HTML file to DOCX file the HtmlFormatProvider imports inline style as file content and inserts it before the actual file content. Since converting HTML to PDF includes converting to DOCX first, as a middle step, this issue is also present in the converted PDF file. 
Completed
Last Updated: 23 May 2022 12:11 by ADMIN
Release R2 2022 SP1

Building Document Processing source code produces assemblies with the wrong VersionReleaseNumber. This leads to version 2022.1.<version_date> instead of 2022.2.<version_date>.

Workaround: Update VersionReleaseNumber to equal 2 in "...\Telerik_UI_For_WinForms_2022_2_510_DPL_source\DPL\Build\Imports\CommonConfig.targets"

Completed
Last Updated: 13 Apr 2022 13:49 by ADMIN
Release R2 2022
Exception when converting to PDF and there are cells with a width less then 5.
Unplanned
Last Updated: 14 Mar 2022 13:10 by Sergio
Invalid formula evaluation when there is a comma in the function and no parameter after it.
Unplanned
Last Updated: 24 Feb 2022 15:06 by Dimitar
Exporting HTML sets default paragraph margins which are different than non-set value. The non-set value is 16.
Completed
Last Updated: 04 Mar 2022 12:36 by ADMIN
Release LIB 2022.1.307 (07 Mar 2021)
When importing CSS variables or attributes that have an empty value ArgumentException is thrown.
Unplanned
Last Updated: 16 Feb 2022 10:38 by ADMIN

Having issues when setting form text field that is rotated. The flatten method does not respect the alignment Middle/Right.

Also the field border does not get rotated.

See attached example.

Declined
Last Updated: 21 Mar 2022 12:59 by ADMIN
                        

public string AppendPdfList(string[] append)
{
           PdfFormatProvider provider = new PdfFormatProvider();
            RadFixedDocument targetDocument = new RadFixedDocument();
            provider.ImportSettings.DocumentUnhandledException += (o, args) => { args.Handled = true; };

            // Iterate through the files you would like to merge 
            foreach (string documentName in append)
            {
               RadFixedDocument sourceDocument = provider.Import(File.ReadAllBytes(documentName));
               targetDocument.Merge(sourceDocument);
            }
            TelerikPdfHelper.ClearDuplicatedFonts(targetDocument);

            OutputFilename = Path.GetTempFileName();
           File.WriteAllBytes(OutputFilename, provider.Export(targetDocument));
            return OutputFilename;
}

 

Results in System.NotImplementedException: 'The method or operation is not implemented.

Unplanned
Last Updated: 09 Feb 2022 13:07 by Chris
When exporting row of empty cells from .xlsx to .csv, we do not keep rows of commas as in Excel.
Unplanned
Last Updated: 31 Jan 2022 15:53 by ADMIN
Created by: Amit
Comments: 0
Category: Telerik Document Processing
Type: Feature Request
0
Provide an API for exporting a DataTable at specified coordinates.