Unplanned
Last Updated: 30 Jul 2020 11:13 by ADMIN
Unplanned
Last Updated: 28 Aug 2020 05:07 by ADMIN
Created by: Dimitar
Comments: 0
Category: Spreadsheet
Type: Feature Request
1
 Implement the Page Break Preview functionality like in Excel
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.
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: 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.'

Unplanned
Last Updated: 07 Dec 2021 11:27 by ADMIN

Cell Values disappearing when RadWindow is dragged to a second Monitor.

Workaround:

private void MainWindow_Loaded(object sender, RoutedEventArgs e)
{
    this.viewModel.OpenSampleCommand.Execute(null);
    radDocking1.ToolWindowCreated += RadDocking1_ToolWindowCreated;
}

private void RadDocking1_ToolWindowCreated(object sender, Telerik.Windows.Controls.Docking.ElementCreatedEventArgs e)
{
    var window = e.CreatedElement as ToolWindow;
    if (window != null)
    {
        window.WindowStateChanged += Window_WindowStateChanged;

    }
}

private void Window_WindowStateChanged(object sender, EventArgs e)
{
    var window = sender as ToolWindow;

    var spreadsheet = window.ChildrenOfType<RadSpreadsheet>().FirstOrDefault();
    if (spreadsheet != null)
    {
        spreadsheet.InvalidateVisual();
    }
}

 

Completed
Last Updated: 10 Jun 2021 11:17 by ADMIN
Release R2 2021 SP1
NullReferenceException when importing a scatter chart with only one axis 
Unplanned
Last Updated: 07 Jul 2021 10:39 by ADMIN
Created by: Fred
Comments: 0
Category: Spreadsheet
Type: Bug Report
1
Changing the active sheet in code removes the frozen panes.
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.
Unplanned
Last Updated: 03 Aug 2021 13:59 by ADMIN

Setting up a paper size to A1 and exporting it actually sets the paperSize to 1. Using the same scenario in Excel sets the paperSize to 305.

This leads to inappropriate values when entering the Page Setup options later in Excel.

Unplanned
Last Updated: 25 Aug 2021 12:00 by ADMIN
Creating a chart with a title in excel, importing it in RadSpredsheet, and then exporting it to XLSX changes the size of the chart's title and labels.
Unplanned
Last Updated: 26 Aug 2021 08:00 by ADMIN
Provide an easy way to bind or set the ApplicationName in the ribbon
Unplanned
Last Updated: 30 Aug 2021 08:28 by ADMIN
Provide a way to display function name that is different than the actual names saved in the XML.
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: 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: 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: 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: 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
Unplanned
Last Updated: 28 Feb 2022 11:32 by JC
The user needs to either double click or hit F2 in order to proceed.
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.