Unplanned
Last Updated: 17 Jan 2024 10:44 by Ugnius
Data validation dialog buttons should respond to the Enter or Esc keys (Retry, Cancel).
Unplanned
Last Updated: 01 Dec 2023 07:12 by Derek

Copy/Paste a shape and then an image leads to a wrong result. 

Steps to reproduce: 

1. Copy plain text from a plain text editor onto the clipboard -> Paste in Spreadsheet and the text is pasted OK.
2. Copy the image from another app onto the clipboard -> Paste in Spreadsheet and the "This information cannot be pasted" dialog is displayed.
3. Insert picture from file into spreadsheet -> image displayed in a shape.
4. Select and copy the shape.
5. Repeat step 1 => Copy plain text from a plain text editor onto the clipboard -> Paste in Spreadsheet and the text is pasted OK.
6. Repeat step 2 => Copy image from another app onto clipboard -> Paste in Spreadsheet and shape selected and copied in step 4 is pasted. => Not expected result.
Unplanned
Last Updated: 29 Nov 2023 08:54 by Srikanth
Memory leak when opening a new window that contains a spreadsheet several times.
Unplanned
Last Updated: 13 Oct 2023 15:29 by ADMIN

We have a problem creating an Excel file with Telerik.Windows.Documents.Spreadsheet.

In our last release for our customers we used Telerik WPF version 22.2.613.40 (Spreadsheet DLL) When calling the following line of code

m_Worksheet.Cells[m_CurrentRowIndex, m_CurrentColumnIndex].SetValue("111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 111111111111111111111111111111111111111111111111111111111111111111111 111111111111111111111111111111111111111111111111111111111111111111111 111111111111111111111111111111111111111111111111111111111111111111111 111111111111111111111111111111111111111111111111111111111111111111111 111111111111111111111111111111111111"); the CellValueType is set to text and the Value is correct. We have now switched our project to .NET 7 and Telerik WPF to version 2023.2.519.70. We discovered that this line of code no longer works. The CellValueType is now Number and the Value Infinity Have you changed anything internally? How can we solve the problem now?


Unplanned
Last Updated: 03 Oct 2023 12:13 by Harald
Slow performance with documents that contain many custom styles. 
Unplanned
Last Updated: 02 May 2023 12:44 by ADMIN
Created by: Julio Cesar
Comments: 2
Category: Spreadsheet
Type: Bug Report
1
Searching with Ctrl-F in a sheet with many rows takes a long time.
Unplanned
Last Updated: 02 Mar 2023 08:08 by n/a
The sheet navigation does not work with specific theme and document.
Unplanned
Last Updated: 06 Dec 2022 11:05 by Anthony
The cursor position is changed when one clicks in the middle of a formula. The cursor is moved to the end of the text. 
Unplanned
Last Updated: 19 Sep 2022 13:42 by ADMIN
When there are empty cells in the range covered by the chart, the chart is shown to have increasing values, instead of showing nothing:

Expected:

Image

Actual:

Image

Unplanned
Last Updated: 19 Sep 2022 10:34 by ADMIN

Scatter chart with category range where data has both numbers and strings is incorrectly visualized.

Excel:


Image

Spreadsheet:

Image
Unplanned
Last Updated: 13 Sep 2022 07:24 by Dimitar

The EqualToRule does not work the same way in Excel and RadSpreasheet. 

When using string values with this rule, Excel requires using quotes while in RadSpreadsheet the quotes are interpreted as part of the value.  

Unplanned
Last Updated: 01 Sep 2022 11:32 by Dmitriy
Right borders are not rendered correctly when there is no value. 
Unplanned
Last Updated: 18 Aug 2022 09:09 by Rui
Created by: Rui
Comments: 0
Category: Spreadsheet
Type: Bug Report
3
Add formula error checking like in Excel
Unplanned
Last Updated: 16 Aug 2022 11:38 by ADMIN
Exporting merged columns to PDF creates unnecessary pages. The created file contains more than 8 MB in size and empty pages. It should create only one page as done in MS Excel.
Unplanned
Last Updated: 16 Aug 2022 11:29 by ADMIN
Selected merged cells jump to the bottom of the selection when it goes outside the visible area.
Unplanned
Last Updated: 06 May 2022 08:14 by IGK

Custom style is not applied to empty cells when applying to the entire row.

Workaround: 

Dim usedCellRange As CellRange = mobjValidationResultWs.UsedCellRange
For rowIndex As Integer = usedCellRange.FromIndex.RowIndex To usedCellRange.ToIndex.RowIndex
    For columnIndex As Integer = usedCellRange.FromIndex.ColumnIndex To usedCellRange.ToIndex.ColumnIndex
        Dim cell As CellSelection = mobjValidationResultWs.Cells(rowIndex, columnIndex)
        cell.SetStyleName("Common")

    Next columnIndex
Next rowIndex

Unplanned
Last Updated: 28 Feb 2022 11:32 by JC
The user needs to either double click or hit F2 in order to proceed.
Unplanned
Last Updated: 14 Dec 2021 07:43 by ADMIN

The formula is not evaluated correctly when the fill right function is used.

To reproduce:

1. Enter the word "A1" in cell A1 and "B1" in cell B1.
2. Enter the formula "=A1&B1" in cell C1. C1 now correctly shows "A1B1"
3. Select C1 to H1 and run the Fill Right command.

Observe that D1, E1, and F1 show the correct result, but G1 and H1 show "0".

Workaround:

Save and reopen the document.

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();
    }
}

 

Unplanned
Last Updated: 24 Sep 2021 06:14 by ADMIN
Value of a cell is visualized outside of the cell boundaries, or the value is clipped and partially visible, when the cell is updated (from code-behind), while being in an inactive worksheet, and is referenced by another cell from the active sheet.

Workaround: get a value of some cell in the active sheet and set it again to the same cell.

The issue is reproducible after the official release of Q1 2015.
1 2 3 4 5