Unplanned
Last Updated: 11 Mar 2026 13:42 by ADMIN

XlsFormatProvider: InvalidOperationException is thrown when importing a document with an unsupported BIFF record.

Workaround: Re-save the file with Excel before importing it.

Unplanned
Last Updated: 11 Mar 2026 08:24 by Piotr

The issue is reproducible with PDF form fields and setting Polish characters to the text fields: e.g. "ęóąśłżźćń" 

Edit mode in RadPdfViewer:

Exit edit mode:

Here is a sample code snippet for reproducing the case without UI:

            PdfFormatProvider provider = new PdfFormatProvider();
            RadFixedDocument document = provider.Import(File.ReadAllBytes("file.pdf"), TimeSpan.FromSeconds(10));

            foreach (RadFixedPage page in document.Pages)
            {
                foreach (Annotation annotation in page.Annotations)
                {
                    if (annotation.Type == AnnotationType.Widget)
                    {
                        Widget widget = (Widget)annotation;
                        var field = widget.Field as TextBoxField;
                        if (field != null) 
                        {
                            field.Value = "ęóąśłżźćń.";
                        }
                    }
                }
            }
            string outputFilePath = "result.pdf";
            File.Delete(outputFilePath);
            File.WriteAllBytes(outputFilePath, provider.Export(document, TimeSpan.FromSeconds(10)));
            Process.Start(new ProcessStartInfo() { FileName = outputFilePath, UseShellExecute = true });

Unplanned
Last Updated: 11 Mar 2026 06:22 by Foxy

After merging several PDF documents, some pages are blank indicating the following error:

In Development
Last Updated: 10 Mar 2026 19:03 by ADMIN
PdfFormatProvider: Justified text alignment is not respected for specific text content.
In Development
Last Updated: 10 Mar 2026 15:33 by ADMIN

Add support for superscript and subscript font effects for cell formatting. Currently, this is not supported by the model and is omitted on import.
			
In Development
Last Updated: 10 Mar 2026 14:05 by ADMIN
Created by: Mario
Comments: 0
Category: PdfProcessing
Type: Feature Request
4
Expose internal GrayColor object.
In Development
Last Updated: 10 Mar 2026 13:49 by ADMIN
Created by: EUNKYUNG
Comments: 0
Category: SpreadProcessing
Type: Feature Request
1
XlsFormatProvider: Add support for hidden rows.
In Development
Last Updated: 10 Mar 2026 13:29 by ADMIN
ADMIN
Created by: Deyan
Comments: 0
Category: SpreadProcessing
Type: Feature Request
10
Add support for strikethrough font effect for cell formatting. Currently this is not supported by the model and is omitted on import.
Unplanned
Last Updated: 10 Mar 2026 12:45 by Łukasz
Created by: Łukasz
Comments: 0
Category: WordsProcessing
Type: Feature Request
3
PdfFormatProvider: Export accessible PDFs.
In Development
Last Updated: 10 Mar 2026 12:20 by ADMIN
Opening a file where there is a format string with modificator [Color11] causes an ArgumentException "Invalid modificator" This prevents the file from opening.
Unplanned
Last Updated: 10 Mar 2026 11:37 by Benjamin

When using Telerik Document Processing (PdfProcessing) for embedding Factur-X invoices, the produced PDF document is Non‑compliant with PDF-AF / Factur‑X according to the following validator: 

https://www.superpdp.tech/outils/validateur-facture-electronique/ 

Unplanned
Last Updated: 06 Mar 2026 13:39 by ADMIN
XlsFormatProvider: CodeName and Name properties of worksheets are reordered and renamed after import-export.
In Development
Last Updated: 06 Mar 2026 09:59 by ADMIN
Created by: Guillaume
Comments: 0
Category: PdfProcessing
Type: Feature Request
0

With the current implementation when exporting a Stitching function all the containing functions are exported as Sampled functions even if they originally have been imported as Exponential interpolation functions, which leads to an increase in the size of the document.

More information can be found in the PDF Specification.

Unplanned
Last Updated: 06 Mar 2026 09:33 by ADMIN

This is preserved in the xml once saved from MS Excel:

In Development
Last Updated: 05 Mar 2026 19:43 by ADMIN
ADMIN
Created by: Mihail
Comments: 0
Category: PdfProcessing
Type: Feature Request
0
Implement the Exponential Interpolation Function in PdfProcessing. Currently, NotSupportedFunctionTypeException is thrown with a message "Function type 2 is not supported."
In Development
Last Updated: 05 Mar 2026 14:07 by ADMIN

The XlsxPartNames class expects a strict name for reading the comments parts:

public const string CommentsPartName = @"/xl/comments{0}.xml";

However, some third-party tools may change the name to GemComments.xml for example. 

MS Excel recognizes this naming for the comments part. It would be nice to provide such functionality in RadSpreadProcessing.

Completed
Last Updated: 04 Mar 2026 13:48 by ADMIN
Release 2026.1.304 (2026 Q1)
When importing a document with many Path elements, the memory consumption could be very high.
Completed
Last Updated: 04 Mar 2026 13:48 by ADMIN
Release 2026.1.304 (2026 Q1)
The issue is that the document contains incorrect data that the CrossReferenceStream.LoadReferences method cannot parse.
Completed
Last Updated: 04 Mar 2026 13:48 by ADMIN
Release 2026.1.304 (2026 Q1)

With the current implementation, the compression setting is omitted:

  • streamWriter.Settings.StreamCompression
Completed
Last Updated: 04 Mar 2026 13:39 by ADMIN
Release 2026.1.304 (2026 Q1)
Created by: Graham
Comments: 0
Category: PdfProcessing
Type: Bug Report
1

As a result of the below missing operator, some of the glyphs can't be extracted from the CFFFontTable and the characters are not displayed in the PdfViewer:

The end user result is missing letter from the PDF content.

1 2 3 4 5 6