Unplanned
Last Updated: 17 Mar 2025 11:27 by ranga
Created by: ranga
Comments: 0
Category: Spreadsheet
Type: Feature Request
1
When the spreadsheet has numbers only, it loads fine.

When it has a Chart, like a bar chart, it does not load the bar chart.
Unplanned
Last Updated: 05 Mar 2025 14:43 by Liviu Ciocoiu
Created by: Liviu Ciocoiu
Comments: 0
Category: Spreadsheet
Type: Feature Request
1
The ability to choose which options to appear in the ContextMenu.
Unplanned
Last Updated: 19 Feb 2025 12:41 by Sihol
When the Spreadsheet generates the byte array with ExportToExcelAsync(), it doesn't include the information about the active cell. For example, this restricts the ability to set the number of frozen columns and rows, based on the active cell. One must provide explicit UI for this as a custom tool.
Unplanned
Last Updated: 18 Feb 2025 14:15 by Sihol
Created by: Sihol
Comments: 0
Category: Spreadsheet
Type: Bug Report
2

I want to change the ColumnsCount property value at runtime, for example, based on the Excel files that the app is loading.

===

TELERIK EDIT:

A possible workaround is to recreate the Spreadsheet component. The downside will be a minor UI flicker. Alternatively, set ColumnsCount to a small value like 1. In this way the component will display only the existing columns in the opened file.

<TelerikNumericTextBox @bind-Value="@SpreadsheetColumnsCount"
                       Min="0" Max="999"
                       Width="80px" />

<TelerikButton OnClick="@OnButtonClick">Apply ColumnsCount</TelerikButton>

@if (SpreadsheetVisible)
{
    <TelerikSpreadsheet Data="@SpreadsheetData"
                        ColumnsCount="@SpreadsheetColumnsCount">
    </TelerikSpreadsheet>
}

@code {
    private byte[]? SpreadsheetData { get; set; }

    private int SpreadsheetColumnsCount { get; set; } = 10;

    private bool SpreadsheetVisible { get; set; } = true;

    private async Task OnButtonClick()
    {
        SpreadsheetVisible = false;
        await Task.Delay(1);

        SpreadsheetVisible = true;
    }
}

 

Unplanned
Last Updated: 18 Feb 2025 10:42 by Sihol
Created by: Sihol
Comments: 0
Category: Spreadsheet
Type: Feature Request
1
I want to have an option to disable the formulas in the Spreadsheet.
Unplanned
Last Updated: 06 Dec 2024 11:57 by Stas
Created by: Stas
Comments: 0
Category: Spreadsheet
Type: Feature Request
2

On the Spreadsheet control please display a function list when the user types "=" or provide the user with some other reference about the available functions.

Unplanned
Last Updated: 26 Nov 2024 08:02 by ADMIN
Created by: Jeremy
Comments: 7
Category: Spreadsheet
Type: Feature Request
3

<TelerikSpreadsheet Height="500px" Width="100%">
    <SpreadsheetSheets>
        <SpreadsheetSheet Name="Sheet1">
            <SpreadsheetSheetColumns>
                <SpreadsheetSheetColumn Index="0" Width="100px"></SpreadsheetSheetColumn>
                <SpreadsheetSheetColumn Index="1" Width="200px"></SpreadsheetSheetColumn>
            </SpreadsheetSheetColumns>
            <SpreadsheetSheetRows>
                <SpreadsheetSheetRow Index="0">
                    <SpreadsheetSheetCell Value="Item"></SpreadsheetSheetCell>
                    <SpreadsheetSheetCell Value="Price"></SpreadsheetSheetCell>
                </SpreadsheetSheetRow>
                <SpreadsheetSheetRow Index="1">
                    <SpreadsheetSheetCell Value="Apples"></SpreadsheetSheetCell>
                    <SpreadsheetSheetCell Value="1.50"></SpreadsheetSheetCell>
                </SpreadsheetSheetRow>
                <SpreadsheetSheetRow Index="2">
                    <SpreadsheetSheetCell Value="Bananas"></SpreadsheetSheetCell>
                    <SpreadsheetSheetCell Value="2.00"></SpreadsheetSheetCell>
                </SpreadsheetSheetRow>
            </SpreadsheetSheetRows>
        </SpreadsheetSheet>
    </SpreadsheetSheets>
</TelerikSpreadsheet>

Unplanned
Last Updated: 11 Jul 2024 08:58 by ADMIN
Created by: Jeremy
Comments: 2
Category: Spreadsheet
Type: Feature Request
3

I'm having the same issue that was fixed in the Telerik UI for WinForms RadSpreadsheet. When loading the workbook into a Blazor UI TelerikSpreadsheet control, the validation dropdown shows fine when exported to Excel but the Telerik control doesn't show the dropdown. However, it only allows you to type values in the supplied validation list as expected.

RadSpreadsheet: ListDataValidation not working, dropdown does not appear in control (telerik.com)

ListDataValidationRuleContext context = new(worksheet, ri, ci)
{
  InputMessageTitle = "Restricted input",
  InputMessageContent = "The input is restricted to the week days.",
  ErrorStyle = ErrorStyle.Stop,
  ErrorAlertTitle = "Wrong value",
  ErrorAlertContent = "The entered value is not valid. Allowed values are the week days!",
  InCellDropdown = true,
  Argument1 = "Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday"
};

cell.SetDataValidationRule(new ListDataValidationRule(context));
Unplanned
Last Updated: 12 Jun 2024 10:09 by Roy
Created by: Roy
Comments: 0
Category: Spreadsheet
Type: Feature Request
7

Please add support for protected worksheets and protected workbooks.

Unplanned
Last Updated: 07 Jun 2024 07:46 by Federico
Created by: Federico
Comments: 0
Category: Spreadsheet
Type: Feature Request
4
Expose a way to know which cells are selected, or even better, read the values of the selected cells.
Unplanned
Last Updated: 05 Jun 2024 07:20 by ADMIN
Created by: Diana
Comments: 0
Category: Spreadsheet
Type: Feature Request
10
I would like to be able to save the data in the spreadsheet on an OnChange event when the data in a cell is changed. I don't see any event like this on the control and am wondering if this is something planned for the future.
Unplanned
Last Updated: 22 May 2024 08:23 by Markus
Created by: Markus
Comments: 0
Category: Spreadsheet
Type: Feature Request
7
In Excel, you can add a dropdown to edit the value of a cell. I want the same behavior in the Spreadsheet component.