Completed
Last Updated: 19 Jul 2021 08:30 by ADMIN
Release R3 2021
NullReference exception is thrown when importing document with docx AltChunk element.
Unplanned
Last Updated: 20 Jul 2021 13:54 by ADMIN
The color transformations of DrawingML colors are not imported, leading to the chart series having different colors compared to the original document.
Completed
Last Updated: 12 Aug 2021 13:35 by ADMIN
Release LIB 2021.2.816 (16 Aug 2021)
Charts containing marker definition, even its symbol and fill properties are set to none are drawn.
Completed
Last Updated: 25 Aug 2021 14:49 by ADMIN
Release R3 2021
If there is a location that has only a page, but no left, top, and zoom an ArgumentOutOfRangeException.
Unplanned
Last Updated: 27 Sep 2021 05:54 by ADMIN
Wrongly exported image and pages with a specific file.
Unplanned
Last Updated: 04 Nov 2021 07:49 by ADMIN
Exception in Export functionality of DocxFormatProvider when mail merge is performed
Unplanned
Last Updated: 13 Dec 2021 11:28 by ADMIN

We found a small gap in Telerik's code, while defining name of Excel Sheet tab name (through Telerik Spreadsheet) --> using:

IWorksheetExporter CreateWorksheetExporter(string name);

of:

Telerik.Documents.SpreadsheetStreaming.IWorkbookExporter

When defining name of Excel sheet longer than 31 characters, Telerik code throws ArgumentException "Sheet name should be limited to 31 characters."

This is fine and correct - Excel sheet tab could be set UP TO 31 characters.

When using "shorter" name - like 30 characters, it works.

But when using exactly 31 characters, same Exception is thrown, which shouldn't be the case, as:
- Excel allows UP TO 31 charaters

- also you Exception message is clear that name should be limited TO 31 characters ;)

 

Best Regards,
Namyslaw Szymaniuk

Completed
Last Updated: 17 Dec 2021 16:18 by ADMIN
Release R1 2022
The library allows up to 30 (instead of 31) characters of the sheet name.
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.
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.
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: 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.

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: 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: 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: 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.
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: 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: 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.
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.