Unplanned
Last Updated: 20 Mar 2026 12:45 by ADMIN
ADMIN
Created by: Yoan
Comments: 0
Category: PdfProcessing
Type: Feature Request
0
Introduce an API for Cloning RadFixedPages.
Unplanned
Last Updated: 20 Mar 2026 11:00 by ADMIN

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

In Development
Last Updated: 20 Mar 2026 08:44 by ADMIN
Created by: Christophe
Comments: 2
Category: SpreadProcessing
Type: Feature Request
10
At this point, XlsFormatProvider doesn't support images and they are not imported into Workbook while reading an .xls file.
In Development
Last Updated: 17 Mar 2026 18:36 by ADMIN
Created by: Rob
Comments: 0
Category: PdfProcessing
Type: Feature Request
2
Add support for PDF Portfolios.
In Development
Last Updated: 17 Mar 2026 13:56 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.

In Development
Last Updated: 17 Mar 2026 13:33 by ADMIN
When importing a document with an EmbeddedFile without a Subtype value.
In Development
Last Updated: 17 Mar 2026 12:24 by ADMIN
Created by: DARS
Comments: 4
Category: SpreadProcessing
Type: Feature Request
3
At this point XLS import of SpreadProcessing does not have support for notes/comments.
Unplanned
Last Updated: 17 Mar 2026 08:27 by ADMIN
Created by: Scott
Comments: 3
Category: PdfProcessing
Type: Feature Request
20
Add support for ShadingType 1.
In Development
Last Updated: 16 Mar 2026 12:57 by ADMIN

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

Unplanned
Last Updated: 16 Mar 2026 06:08 by Piotr

The current formula: 
<c r="A1" s="1">
<f>[1]BILANS_JI!$C$2</f>
<v>22611518.026189998</v>
</c>

Simple direct reference to a single external cell [1]BILANS_JI!$C$2
No function, just a linked cell

The expected value to be returned is 22611518.

Unplanned
Last Updated: 12 Mar 2026 07:03 by Siva
System.InvalidCastException: 'Unable to cast object of type 'Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Model.Types.PdfStream' to type 'Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Model.Elements.MarkedContents.ReferencedObject'.'
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 });

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/ 

1 2 3 4 5 6