Completed
Last Updated: 17 Aug 2021 06:37 by ADMIN

Bug report

Excel file is corrupted when it is created with the kendo.ooxml.Workbook toDataURL method, using stringified sheet data:

let dataURL = new kendo.ooxml.Workbook(JSON.stringify(data)).toDataURL();

If the data is passed to the Workbook without stringifying it, this causes a circular reference error (check the console).

let dataURL = new kendo.ooxml.Workbook(data).toDataURL();

Reproduction of the problem

Dojo example.

  1. Click the "To Json" button above the Spreadsheet.
  2. Try to open the generated file in Excel.

Current behavior

The generated Excel file is corrupted

Expected/desired behavior

The generated Excel file is not corrupted

Environment

  • Kendo UI version: 2020.2.617
  • jQuery version: x.y
  • Browser: [all]
Completed
Last Updated: 20 Jan 2022 12:37 by ADMIN

Currently, after export to excel and opening the exported file again in Spreadsheet, the row heights for rows with predefined height change. The above could be easily observed on the Index demo:

* initially, the height of the top row is set to 70px;

* export the Spreadsheet to Excel;

* after re-importing the above file, the height of the first row "Invoice #52" becomes 81px without any apparent reason.

Unplanned
Last Updated: 27 Oct 2020 14:04 by ADMIN
Created by: G.K. Raju
Comments: 0
Category: Spreadsheet
Type: Feature Request
3

Hi Team,

I'd like to request a way to manipulate a large amount of cell groups in the Kendo UI Spreadsheet without decreasing performance.  For example, I'd like to be able to merge/unmerge and change font size to multiple specific cell groups.  I understand changing multiple DOM elements at the same time can cause sluggishness, but maybe there's a way to reduce the time. Currently, it's taking a long time to completely load.  

Thank you for investigating.

Completed
Last Updated: 18 Jan 2021 09:09 by ADMIN
Release 2021.R1
Created by: Softwarehouse
Comments: 0
Category: Spreadsheet
Type: Bug Report
3

Bug report

Values that are copied from Spreadsheet are duplicated when pasted in Excel if before that the copied cells have been cut and pasted inside the Spreadsheet.

Reproduction of the problem

  1. Open this Dojo project
  2. Cut B3:C3
  3. Paste the copied content to A1:B1
  4. Copy A1:B2
  5. Paste to Excel

Current behavior

In Excel, the first row is duplicated and the pasted content contains 3 rows, while 2 rows are copied

Expected/desired behavior

The pasted in Excel content should contain 2 rows instead of 3

Environment

  • Kendo UI version: 2020.3.1021
  • jQuery version: x.y
  • Browser: [all]
Unplanned
Last Updated: 10 Sep 2019 08:55 by ADMIN
Created by: Chris
Comments: 0
Category: Spreadsheet
Type: Feature Request
3
Currently the API does not provide a way to detect when filtering occurs. It would be great if you could add a filter event.
Unplanned
Last Updated: 05 May 2020 18:04 by ADMIN
Created by: Ohenewa
Comments: 0
Category: Spreadsheet
Type: Feature Request
3

Currently, the sheets in the Spreadsheet component can be reordered. It will be a very useful feature if we can configure the component in a way this reordering can be disabled.

Thus the users won't be able to move the sheets' tabs.

Unplanned
Last Updated: 19 Mar 2021 19:49 by ADMIN
Created by: Naveen
Comments: 0
Category: Spreadsheet
Type: Feature Request
3

Hi Team,

I would like to request the Kendo UI Spreadsheet to be able to validate by Text Length instead of using custom validation.  This would help with importing xlsx files which have text length validation.

Thank you!

Unplanned
Last Updated: 12 Sep 2023 13:53 by Pravin
Created by: Pravin
Comments: 0
Category: Spreadsheet
Type: Feature Request
3

Hi Team,

I would like to request a way to include commas for the sheets.rows.cells.validation.from values.

For example:

  • 1st
  • 2nd
  • Combine 1st, and 2nd

Instead of:

  • 1st
  • 2nd
  • Combine 1st
  • and 2nd

Additionally, it would be nice to be able to use another delimiter instead of commas. 

Thank you!

  
Unplanned
Last Updated: 06 Sep 2022 13:30 by Sam

Hi,

When editing a workbook with the Spreadsheet component, if a user switches from a worksheet to another, then moves the scrollbars, when switching back, although the active cell is adequately recovered, the scrollbars are not (the user experience is that they do not react to worksheet switching).

Is this behavior planned to be changed? Is there a workaround?

Best

Unplanned
Last Updated: 05 Apr 2021 09:17 by ADMIN
Created by: Janaki
Comments: 1
Category: Spreadsheet
Type: Feature Request
3

Hi ,

we have a requirement to disable comment option on click of few cells (which are disabled) or to show a toastr message on click of comment that user can't add comment on specific cell. Do you have any such feature or event to track this requirement .

Unplanned
Last Updated: 22 Aug 2019 10:51 by ADMIN
Created by: G.K. Raju
Comments: 0
Category: Spreadsheet
Type: Feature Request
3
Currently there is no suitable event to detect cell styling changes. Such event could be implemented similar to the formatChange event but for the styling changes.
Unplanned
Last Updated: 09 Oct 2019 15:13 by ADMIN
Consider implementing functionality for importing and working with encrypted / password protected Excel files in the SpreadSheet component
Declined
Last Updated: 25 Feb 2020 15:07 by ADMIN
Created by: Otto Neff
Comments: 1
Category: Spreadsheet
Type: Feature Request
3
Unplanned
Last Updated: 01 Aug 2019 08:34 by ADMIN

Other spreadsheet applications (Excel and Google Sheets, to name two) offer the ability to insert individual cells into a sheet without inserting a whole row/column. Most importantly, this feature updates cell references in formulas, which is not something that can be done with copy and paste.

For example, in the following spreadsheet (screenshot from Excel), I've right-clicked cell A2 and chosen "Insert" on the context menu. There is also a button on the ribbon that opens the same "Insert" dialog.

I want to shift the cells down, so I click OK in the dialog. Note that the formulas update accordingly: the sum range expands to A1:A5, while the individual cell references remap.

Can this feature please be added to Kendo spreadsheet? Otherwise, our clients will have to continue manually re-writing formulas after they copy/cut and paste to achieve a similiar-looking (but functionally different) result.

Thanks!

 

Declined
Last Updated: 25 Feb 2020 15:28 by ADMIN
Can the Spreadsheet widget be updated to initialize a sheet that is bound to a datasource when the datasource is an empty object?  

Generally, when a sheet is bound to a datasource, it is for the purpose of editing data, creating new rows and updating/deleting existing rows.  If a datasource comes back empty, the sheet isn't initialized.  So there are no column headers, which can be confusing to users when they don't know what data to enter in which columns.  The other thing is that the sheet itself is not fully initialize so that even if we assign column headers programmatically, when users start entering data, the UI becomes unresponsive and generates a javascript error: Uncaught TypeError: Cannot read property 'indexOf' of undefined
    at r.set (kendo.all.js:4586)
    at r.set (kendo.all.js:4760)
    at kendo.all.js:127702
Completed
Last Updated: 13 Jan 2020 09:20 by ADMIN
Release R1 2020

Bug report

When a string, used as old_text for SUBSTITUTE(text, old_text, new_text, [instance_num]) function, is repeated more than once and the new_text is an empty string, one occurrence of the old_text remains not substituted.

Reproduction of the problem

  1. Go to Spreadsheet Basic usage demo
  2. Add a new sheet
  3. Type ab113abababab11ab in A1
  4. Enter the following formula in B1 =SUBSTITUTE(A1, "ab", "")

NOTE: substituting ab with another string, e.g. cd, replaces all instances of ab as expected.

Current behavior

113ab11 - when ab is repeated more than once in a row, one of its instances remains unchanged to an empty string

Expected/desired behavior

11311

Environment

  • Kendo UI version: 2019.2.514
  • Browser: all
Declined
Last Updated: 26 Oct 2022 08:17 by ADMIN
Created by: Cheng Mun
Comments: 1
Category: Spreadsheet
Type: Feature Request
3

Hi Support Team,

When select multiple cells continuously and right click, it will have more options. But when select multiple cells without continuously and right click, there is only 1 option

Would like to have a feature to have more options when select multiple cells without continuously and right click and also to able to detect which cells are selected if multiple cells are selected without continuously.

Select multiple cells continuously:                                   Select multiple cells without continuously:

      

Unplanned
Last Updated: 06 Nov 2020 07:56 by ADMIN
Text formatting examples are bold, underline, italic. if a react wrapped jquery spreadsheet component cell has two words something like 'Hello World' i want only 'world' to be bold which means in the cell it should show as 'Hello World'. Instead of applying these formatting options to cells apply them to the text in the cell. please make this feature applied to the react spreadsheet as well.

API Reference - https://docs.telerik.com/kendo-ui/api/javascript/spreadsheet/range/methods/bold
Unplanned
Last Updated: 25 Feb 2020 15:19 by ADMIN
Created by: Imported User
Comments: 1
Category: Spreadsheet
Type: Feature Request
3
By default the items in filter are in random order. Can we sort the items in ascending order by default.
Unplanned
Last Updated: 27 May 2019 10:09 by ADMIN
Provide support for images client-side import/export through Telerik Document Processing.