Completed
Last Updated: 31 Mar 2020 11:10 by ADMIN
Release R2 2020
At the moment the print settings set to the WorksheetPageSetup class are not passed to the Print dialog which leads to bad user experience. If you set the print settings of the RadSpreadsheet like so:

WorksheetPageSetup pageSetup = this.radSpreadsheet.Workbook.ActiveWorksheet.WorksheetPageSetup;
pageSetup.PageOrientation = PageOrientation.Landscape;

and then select Print, the Spreadsheet print menu will show the print preview as landscape. However, when after that you click on Print for the default print dialog to appear and then click Preferences, you will notice that the preference is set to Portrait. The print job will be Landscape, but the incorrect information in the default dialog creates confusion.

This is an example of how to set the preference of the default dialog:

PrintDialog printDialog = new PrintDialog();
var printTicket = printDialog.PrintTicket;
printTicket.PageOrientation = System.Printing.PageOrientation.Landscape;
Completed
Last Updated: 02 Oct 2015 14:46 by arnaud
ADMIN
Created by: Tanya
Comments: 1
Category: Spreadsheet
Type: Bug Report
3
The fix will be available in our next LIB release (v. 2015.03.1005).
Completed
Last Updated: 31 Oct 2018 07:53 by ADMIN
The BitmapImage class throws the exception. We could show some kind of no-image-placeholder instead of throwing exception, or skip the image.

Telerik Reporting creates such files.

Attached is a sample project demonstrating how to customize the Open command descriptor to remove .emf images just after importing the document.

Available in R3 2018 Official Release Version.
Completed
Last Updated: 27 Sep 2023 12:20 by ADMIN
Release R3 2023
The data validation error message box has an invalid size when shown multiple times
Completed
Last Updated: 30 Jul 2015 10:54 by ADMIN
The fix will be available in our latest LIB release (v. 2015.02.0803).
Completed
Last Updated: 04 Oct 2021 10:45 by ADMIN
Release LIB 2021.3.927 (27 Sep 2021)
When importing a document containing a destination that does not refer to a formula an exception is thrown: System.NullReferenceException: 'Object reference not set to an instance of an object.'
Completed
Last Updated: 27 Oct 2015 12:06 by ADMIN
ADMIN
Created by: Nikolay Demirev
Comments: 3
Category: Spreadsheet
Type: Bug Report
2
The fix is available in our latest LIB release (v.2015.3.1026). 
Completed
Last Updated: 26 Jun 2019 06:34 by ADMIN
Release R2 2019 SP1
If a document contains many and complex formulas (with many functions having other functions as arguments) it may take a long time to show in the control.
Completed
Last Updated: 04 Mar 2022 07:47 by ADMIN
Release LIB 2022.1.307 (07 Mar 2021)
Some documents with conditional formatting occasionally throw an ArgumentOutOfRangeException due to an internal issue with dfsx indexing.
Completed
Last Updated: 01 Nov 2021 09:00 by ADMIN
Release LIB 2021.3.1101
The style gallery is broken in the fluent theme and crashes the control
Completed
Last Updated: 20 Oct 2021 12:22 by ADMIN
Release R3 2021 SP1
The SpreadsheetML format has built-in reserved names. When such a name is defined in the scope of a worksheet, a SpreadsheetNameException is thrown during parsing the document.
Completed
Last Updated: 18 Oct 2021 06:39 by ADMIN
Release LIB 2021.3.1018 (18 Oct 2021)
If you set, for example, two copies, the printed copies will be 4. If you select three copies, the result will be nine copies.
Completed
Last Updated: 04 Oct 2021 13:35 by ADMIN
Release LIB 2021.3.1011 (11 Oct 2021)
The problem is that the spreadsheet wants to identify the main window. The main window is not known to the plugin and should not be, because it is located in a different app domain due to the specifics of the architecture (https://docs.microsoft.com/en-us/archive/msdn-magazine/2014/january/wpf-build-fault-tolerant-composite-applications).
Completed
Last Updated: 11 Oct 2021 08:28 by ADMIN
Release LIB 2021.3.1011 (11 Oct 2021)
Add sheet button is hidden when there are many sheets. This should be checked with all themes.
Completed
Last Updated: 21 Jul 2021 12:03 by ADMIN
Release LIB 2021.2.726 (26 Jul 2021)
When a cell that has a defined name is selected, the associated name should appear in the name box. However, when the cell is part of a merged range, its row and column name (A1) is shown instead of the defined name.
Completed
Last Updated: 10 Jun 2021 11:17 by ADMIN
Release R2 2021 SP1
NullReferenceException when importing a scatter chart with only one axis 
Completed
Last Updated: 29 Mar 2021 12:50 by ADMIN
Release LIB 2021.1.504 (05/04/2021)

When attaching to the CellPropertyChanged event and trying to modify the cell an exception is thrown:

if firstly detached from the event and then modify the cell the exception is: 
System.InvalidOperationException: 'Collection was modified; enumeration operation may not execute.' 

else:
System.StackOverflowException: 'Exception of type 'System.StackOverflowException' was thrown.'

Completed
Last Updated: 08 Feb 2021 15:00 by ADMIN
Release LIB 2021.1.215 (15/2/2021)
When importing a document containing a ChartSheet (currently not supported: Implement support for ChartSheet) with a smaller tab index than the WorkSheet an ArgumentOutOfRangeException is thrown.
Completed
Last Updated: 02 Dec 2020 13:15 by ADMIN
Release LIB 2020.3.1207 (07/12/2020)
When the users copy an image and paste it to another RadSpreadsheet, then export the Workbook to XLSX, the generated document contains invalid relation as the image is not properly registered inside the resources of the workbook.
1 2 3 4 5