Unplanned
Last Updated: 16 Mar 2018 11:14 by ADMIN
Unplanned
Last Updated: 12 Aug 2024 14:02 by ADMIN
Created by: Matthias
Comments: 4
Category: Spreadsheet
Type: Bug Report
8

Currently, it takes around 5 seconds to load the RadSpreadsheetRibbonBar.

Please run the project and compare the load time when clicking the two buttons in the main form.

Unplanned
Last Updated: 02 Jan 2019 15:08 by ADMIN

Hello,

 

I have a RadRibbonForm with a normal ribbon with no items and a spreadsheet control.

 

I iterate over a datatable and fill the spreadsheet's cell values with the datatable's values

we're talking about a very small size, like 33 rows x 35 columns, and not even all the values are filled in.

 

Unfortunately, there's a very noticeable delay in the spreadsheet, from moving the scrollbars to selecting to changing sheets.. the whole thing feels laggy.

Is this just how it is, or am I experiencing a possible bug?

Could it have anything to do with https://feedback.telerik.com/winforms/1380948-exception-at-runtime-trial-bug ?

 

If that is just how it is, is there anything I can do to make it feel snappier? Disable a theme? Disable some behaviour?

Unplanned
Last Updated: 19 Jan 2023 11:41 by ADMIN
Created by: Kim
Comments: 4
Category: Spreadsheet
Type: Feature Request
4
Add support for conditional formatting 
Unplanned
Last Updated: 20 Nov 2017 12:03 by ADMIN
Unplanned
Last Updated: 14 Jul 2021 06:08 by ADMIN
Created by: Desislava
Comments: 2
Category: Spreadsheet
Type: Feature Request
3
At this point, character formatting can be applied only to the whole cell content. Enable applying rich text formatting only to parts of the text inside a cell.
Unplanned
Last Updated: 06 Jul 2018 08:21 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: Spreadsheet
Type: Feature Request
2

			
Unplanned
Last Updated: 01 Mar 2019 14:41 by Tom
If a worksheet spans more than one page, you can print row and column headings or labels (also called print titles) on every page to ensure that the data is properly labeled.
Unplanned
Last Updated: 18 Nov 2019 11:03 by ADMIN
Created by: mali
Comments: 0
Category: Spreadsheet
Type: Feature Request
2
Currently if radSpreadsheet RightToLeft property is set to Yes, only the Formula Bar is affected; RadSpreadSheet and Status Bar are not.
Unplanned
Last Updated: 19 Aug 2021 06:24 by ADMIN
Created by: Dennis
Comments: 0
Category: Spreadsheet
Type: Feature Request
2
Introduce support for Spell Check
Unplanned
Last Updated: 01 Sep 2023 09:25 by ADMIN
Unplanned
Last Updated: 09 Oct 2023 11:11 by ADMIN
Users want to save the workbook via the Save ribbon button, but they want a default filename in the save dialog (not "book1.xlsx"). 
Unplanned
Last Updated: 15 May 2024 13:26 by ADMIN
Created by: TestTeam
Comments: 7
Category: Spreadsheet
Type: Bug Report
2
The behavior can be reproduced when the zoom of the control is changed and we try to enter a value in a cell.
Unplanned
Last Updated: 21 Jun 2018 14:10 by ADMIN
Unplanned
Last Updated: 23 Feb 2021 07:08 by ADMIN
Created by: Dennis
Comments: 0
Category: Spreadsheet
Type: Feature Request
1
MS Excel supports dragging cells and thus moving the value to a new cell. 
Unplanned
Last Updated: 08 Jun 2021 06:09 by ADMIN

One cannot reference another sheet in a formula by using the UI.

To replicate,

1. Open your spreadsheet demonstration app.

2. Create two work pages.

3. Enter some information on the first page.

4 .go to the second page, select any cell, and press =

5. navigate to the first page and select a cell with data in it.

6. Check the second page again, there is no reference link.

Workaround: manually type the sheet name in the formula

Unplanned
Last Updated: 09 Aug 2021 11:23 by ADMIN
Provide API allowing to import documents on background thread. The API should allow the passing of a CancellationToken in order to cancel the import at any time.
Unplanned
Last Updated: 19 Jul 2021 12:21 by ADMIN

Hi,

 

if you add a Style to a cell containing a "\n"  (which I am forced to use, since text wrap does not work either) the style won't apply.

 

To reproduce just add a radspreadsheet to a form

public Form1()
        {
            InitializeComponent();

            Workbook workbook = new Workbook();
            radSpreadsheet1.Workbook = workbook;

            Worksheet worksheet = workbook.ActiveWorksheet;

            CellStyle style = workbook.Styles.Add("HeaderStyle");
            style.IsBold = true;


            worksheet.Cells[0, 0].SetValue("first\ncell");
            worksheet.Cells[0, 1].SetValue("second cell");

            worksheet.Cells[0, 0, 0, 1].SetStyleName("HeaderStyle");
        }

Regards,

Markus

Unplanned
Last Updated: 17 Dec 2021 06:51 by ADMIN
Expose the most used events on the control so they can be accessed at design time. Currently, most of the events are on the SpreadsheetElement.
Unplanned
Last Updated: 01 Apr 2022 09:50 by Fratessa
Exception when copying sheet with conditional formatting and opening it in RadSpreadsheet
1 2 3