Declined
Last Updated: 10 May 2023 15:06 by ADMIN
Created by: Chris
Comments: 1
Category: Telerik Document Processing
Type: Bug Report
0

When importing an XLSX that has "Date" number-formatted cells, and those cells have the 5-digit representation of th edate, XslxFormatProvider.Import(bytes) will throw a KeyNotFoundException. The exception message is "The given key '58' was not present in the dictionary" for the particular case we're looking at.

Unfortunately, we cannot provide the file itself, as it has PHI in it. And, when we open it in Excel and resave it, Excel will automatically convert the 5-digit representation to a normal date. This new file will import just fine. However, we're trying to cut out that intermediate step.

Pertinent portion of the stack trace:
   at System.ThrowHelper.ThrowKeyNotFoundException[T](T key)

   at System.Collections.Generic.Dictionary`2.get_Item(TKey key)
   at Telerik.Windows.Documents.Spreadsheet.FormatProviders.OpenXml.Xlsx.Contexts.XlsxWorksheetImportContext.ImportDirectFormattingInRange(XlsxWorkbookImportContext workbookContext, FormattingRecord directFormatting, PropertyBagBase propertyBag, Int64 start, Int64 end)
   at Telerik.Windows.Documents.Spreadsheet.FormatProviders.OpenXml.Xlsx.Contexts.XlsxWorksheetImportContext.EndImport(XlsxWorkbookImportContext workbookContext)
   at Telerik.Windows.Documents.Spreadsheet.FormatProviders.OpenXml.Xlsx.Contexts.XlsxWorkbookImportContext.EndImport()
   at Telerik.Windows.Documents.FormatProviders.OpenXml.OpenXmlImporter`1.Import(Stream input, IOpenXmlImportContext context)
   at Telerik.Windows.Documents.Spreadsheet.FormatProviders.OpenXml.Xlsx.XlsxFormatProvider.ImportOverride(Stream input)
   at Telerik.Windows.Documents.Spreadsheet.FormatProviders.WorkbookFormatProviderBase.Import(Stream input)
   at Telerik.Windows.Documents.Spreadsheet.FormatProviders.BinaryWorkbookFormatProviderBase.Import(Byte[] input)
   at .....

 

 

Declined
Last Updated: 25 May 2023 14:48 by ADMIN

Hi 

is there possible Telerik RadSpreadProcessing able to print repeat column on every printed page?

 

 

Unplanned
Last Updated: 29 May 2023 08:29 by David
Created by: David
Comments: 0
Category: Telerik Document Processing
Type: Bug Report
0

Getting these Visual Studio warnings in using current Telerik.Maui and Telerik.Blazor in Build:

Detected package version outside of dependency constraint: Telerik.Documents.Spreadsheet.FormatProviders.Xls 2023.1.307 requires Telerik.Zip (= 2023.1.307) but version Telerik.Zip 2023.1.410 was resolved.

Detected package version outside of dependency constraint: Telerik.Documents.Spreadsheet.FormatProviders.OpenXml 2023.1.307 requires Telerik.Zip (= 2023.1.307) but version Telerik.Zip 2023.1.410 was resolved.

Detected package version outside of dependency constraint: Telerik.Documents.Flow.FormatProviders.Doc 2023.1.307 requires Telerik.Zip (= 2023.1.307) but version Telerik.Zip 2023.1.410 was resolved.

Detected package version outside of dependency constraint: Telerik.Documents.Fixed.FormatProviders.Image.Skia 2023.1.307 requires Telerik.Zip (= 2023.1.307) but version Telerik.Zip 2023.1.410 was resolved.

Detected package version outside of dependency constraint: Telerik.Documents.Fixed 2023.1.307 requires Telerik.Zip (= 2023.1.307) but version Telerik.Zip 2023.1.410 was resolved.

Detected package version outside of dependency constraint: Telerik.Documents.Core 2023.1.307 requires Telerik.Zip (= 2023.1.307) but version Telerik.Zip 2023.1.410 was resolved.

Detected package version outside of dependency constraint: Telerik.Documents.CMapUtils 2023.1.307 requires Telerik.Zip (= 2023.1.307) but version Telerik.Zip 2023.1.410 was resolved.

Please be sure similar warnings will not be generated in your upcoming June releases.

Thank you.


The project file references ONLY the two very latest Telerik Maui and Blazor Nuget packages, no other Telerik dlls, etc. It would seem the outdated references are internal to at least one of those nuget packages you furnish. I do not see that I have any means on my end to resolve them.


Here my only csproj Telerik references:

<PackageReference Include="Telerik.UI.for.Blazor" Version="4.2.0" />
<PackageReference Include="Telerik.UI.for.Maui" Version="5.1.0" />
Declined
Last Updated: 07 Jun 2023 11:05 by ADMIN
Created by: Thomas
Comments: 1
Category: Telerik Document Processing
Type: Bug Report
0

Hello,

I'm using Telerik Documents Processing 2023.1.410

With WordsProcessing, if I add a table in a footer it will automatically add a space after the table

Here an example, my table is the same size as my image in background and I removed all margin of the section:

Here the code:


Footer footer = section.Footers.Add(HeaderFooterType.Default)
section.PageMargins = new Padding(0,96,96,0);
section.FooterBottomMargin = 0;

Table table = footer.Blocks.AddTable();
TableRow row = table.Rows.AddTableRow();
TableCell cell = row.Cells.AddTableCell();
Paragraph paragraph = cell.Blocks.AddParagraph();
paragraph.Inlines.AddRun("Something");

 

I didn't any properties to manage spaces around a Table like in Paragraph.

It can be reproduced without the image

Work around:

If I add a new paragraph at the end and remove all spaces of this paragraph then it works

Here the code added:


paragraph = footer.Blocks.AddParagraph();
paragraph.Spacing.SpacingAfter = 0;
paragraph.Spacing.SpacingBefore = 0;
paragraph.Spacing.LineSpacing = 0;

 

Regards,
Hervouet Thomas

Completed
Last Updated: 21 Jul 2023 11:07 by ADMIN
Release R3 2023
Importing documents containing many formulas referring to constants values is causing a memory leak.
Completed
Last Updated: 21 Jul 2023 12:22 by ADMIN
Release R3 2023
Exporting a document containing workbook properties and protection leads to an invalid document.
Completed
Last Updated: 10 Aug 2023 12:20 by ADMIN
Release R3 2023
Created by: Jaroslaw
Comments: 1
Category: Telerik Document Processing
Type: Bug Report
0
Values filled in forms inside a PDF document are missing when exporting the document to image using the SkiaImageFormatProvider.
Completed
Last Updated: 12 Sep 2023 11:26 by ADMIN
Release R3 2023

A NullReferenceException is thrown when copying a sheet containing a chart with Marker whose FIll is null.

There is a workaround which should be applied before copying the sheet:

foreach (FloatingChartShape chart in wsPureCompTemplate.Charts)
{
    foreach (SeriesGroup seriesGroup in chart.Chart.SeriesGroups)
    {
        foreach (SeriesBase series in seriesGroup.Series)
        {
            LineSeries lineSeries = series as LineSeries;
            if (lineSeries != null && lineSeries.Marker != null && lineSeries.Marker.Fill == null)
            {
                lineSeries.Marker.Fill = new NoFill();
            }

            ScatterSeries scatterSeries = series as ScatterSeries;
            if (scatterSeries != null && scatterSeries.Marker != null && scatterSeries.Marker.Fill == null)
            {
                scatterSeries.Marker.Fill = new NoFill();
            }
        }
    }
}

Completed
Last Updated: 10 Aug 2023 13:07 by ADMIN
Release R3 2023
Importing an XLS document containing _xlfn.SINGLE defined name causes an InvalidOperationException.
Completed
Last Updated: 19 Sep 2023 10:32 by ADMIN
Release R3 2023
If the same rule, which uses a formula, is applied on more than one range the result data validation is incorrect, because the formula is translated wrong. E.g. if a custom rule with a formula =IsNumber(A1) is applied on A1:C6 and F1:F6, the rule for cell A1 would be =IsNumber(F1) instead of IsNumber(A1)
Unplanned
Last Updated: 21 Sep 2023 08:36 by Avrohom Yisroel
Created by: Avrohom Yisroel
Comments: 0
Category: Telerik Document Processing
Type: Bug Report
0
The th tag should be imported with a heading style.
Unplanned
Last Updated: 27 Sep 2023 05:34 by Trevor
Created by: Trevor
Comments: 0
Category: Telerik Document Processing
Type: Feature Request
0
The SUMPRODUCT function is currently not implemented.
Unplanned
Last Updated: 08 Dec 2023 14:57 by Prabhu
 Implement text orientation when importing/exporting to/from HTML
Unplanned
Last Updated: 21 Dec 2023 12:28 by Kenneth

An exception is thrown when the file contains the following format string 

"      PE @ "??0.0;-"      PE @ "??0.0;"      PE @   New";"      PE @ "_0_0@

The exception is thrown in the ValidateNumberFormatDescriptors method.

Unplanned
Last Updated: 29 Jan 2024 10:38 by Ye

If a worksheet has page breaks, but Fit to pages is also set to true, the page breaks should not be respected.

Workaround: Remove the page breaks before printing:

wb.ActiveWorksheet.WorksheetPageSetup.PageBreaks.Clear();

 

Unplanned
Last Updated: 26 Feb 2024 15:11 by hyuk

When importing a document containing a Plain Text SDT with multiple paragraphs an exception is thrown:

Telerik.Windows.Documents.Flow.Model.Annotations.StructuredDocumentTags.Builders.SdtBuilderFailureException: "This content control type cannot be inserted around multiple paragraphs."

Completed
Last Updated: 15 May 2024 06:28 by ADMIN
Release 2024.2.426 (2024 Q2)
Created by: Daniel
Comments: 0
Category: Telerik Document Processing
Type: Feature Request
0
The ImageInline class in the WordsProcessing library has a Description available as a property of the Image property. The FloatingImage class also has an Image property but it is internal and its Description property is not available for users of the SpreadProcessing library.
Completed
Last Updated: 13 Nov 2024 09:23 by ADMIN
Release 2024.3.802 (2024 Q3)
Exporting specific documents with fields to PDF causes NullReferenceException.
Unplanned
Last Updated: 24 Jun 2024 09:16 by ADMIN
ADMIN
Created by: Yoan
Comments: 0
Category: Telerik Document Processing
Type: Feature Request
0
Add support for digital signature in the XLSX format.
Completed
Last Updated: 02 Aug 2024 11:09 by ADMIN
Release 2024.3.802 (2024 Q3)

When a format string of type: _ * # ##0_ ;_ * -# ##0_ ;_ * "-"??_ ;_ @_  is set through code and the culture settings of the machine are set so that the number grouping symbol is space, the resulting format string comes out incorrect on export: _,*,# ##0_,;_,*,-# ##0_,;_,*,"-"??_,;_,@_, 

This will happen every time the symbols in-between and after _ and * coincide with the number group separator.