Declined
Last Updated: 19 Jan 2023 13:48 by ADMIN

This is observed also in online demos:

Steps:

  1. Open demo
  2. Edit a cell and enter text
  3. Press Alt+Enter and enter more text
  4. Press Alt+Enter

    Result: the last letter of the row is transferred to the new row

Unplanned
Last Updated: 17 Jun 2021 10:44 by ADMIN
Created by: Ron
Comments: 1
Category: Spreadsheet
Type: Feature Request
1

With Excel when you use a custom number format of #,##0.00 and you enter (10) into the cell it will be displayed as -10.  With the Spreadsheet control the same example yields (10).  How can we get the same behavior as Excel with the Spreadsheet control?

 

  dojo example: https://dojo.telerik.com/@843335b6-427b-4127-af09-fbe9957bfec6/uGaVAVat

 

Thanks,

Ron

Completed
Last Updated: 24 Mar 2020 17:11 by ADMIN
Release 2020.R1.SP.next

Bug report

The select method of the range in the Spreadsheet component throws an error when we have a selected cell in the visible area of the component and try to select a range that is outside of this visible area.
The bug is replicable both when the range is passed as exact cells or row-column pair:

  • sheet.range(3,2,3,3).select();
  • sheet.range("C4:E6").select();

** This is a regression from the R3 2019 release

Reproduction of the problem

  1. Open this Dojo
  2. Scroll to row 70+ and select a random cell
  3. Press the "Select range" button

Current behavior

The following error appears in the browser's console
image

If you scroll to the top rows of the Spreadsheet there is a visual selection of the cells that are passed in the range

Expected/desired behavior

On "Select range" click the "C4:E6" cell range should be selected and the Spreadsheet should be automatically scrolled to this selection.

Here is a working demo: https://dojo.telerik.com/uRERUxOm

Environment

  • Kendo UI version: 2020.1.219
  • jQuery version: x.y
  • Browser: [all]
Unplanned
Last Updated: 25 Mar 2020 18:01 by ADMIN
Created by: Naveen
Comments: 0
Category: Spreadsheet
Type: Feature Request
1

Add support for multiple ranges for the Spreadsheet's SUM function, for example: 

=SUM(E5:E6:E9:E10)

Duplicated
Last Updated: 30 Apr 2020 08:23 by ADMIN
Created by: Emanuele
Comments: 1
Category: Spreadsheet
Type: Feature Request
1
I think it might be very useful to add to cell comments an HTML code and be able to do it programmatically.

Thank you
Unplanned
Last Updated: 28 May 2020 12:32 by ADMIN

In Excel it is possible to select several rows and increase/decrease all selected rows height. In the Spreadsheet this works only for the last selected row. The following steps demonstrate the behavior:

1. Open https://demos.telerik.com/kendo-ui/spreadsheet/index

2. Click on the header of row 6, hold and drag until rows 6, 7, 8, 9 , 10 are selected.

3. Click the handle below row 10's header and drag to increase the height of the rows. The Spreadsheet increases only the last row's height.

Unplanned
Last Updated: 22 Jun 2020 18:18 by Vamsi
Created by: Vamsi
Comments: 0
Category: Spreadsheet
Type: Bug Report
1

Bug report

Reproduction of the problem

Reproducible in this demo: https://demos.telerik.com/kendo-ui/spreadsheet/datasource

  1. Scroll down to row 78
  2. Focus A78 and drag to E78. Copy the data
  3. Paste over the empty 79 row's first cell
  4. Press Ctrl + Z to undo the changes.
  5. Open the browser's dev tools network tab and press the "Save" button above the Spreadsheet.

Current behavior

The data cleared by the "undo" shortcut is saved and sent to the server

A different behavior is exhibited if the data is pasted over the row header instead of the row's first cell. Follow the same steps, but on step 3. instead of pasting over the first cell, paste the data over the row 79 header. After undo and then clicking "Save", the fields have null values.

Expected/desired behavior

No data is sent with the request

Environment

  • Kendo UI version: 2020.2.617
  • jQuery version: x.y
  • Browser: [all]
Completed
Last Updated: 05 Nov 2020 13:23 by ADMIN
Release 2020.R3.SP.next

Bug report

When using a custom cell editor in the Spreadsheet along with keyboard navigation value selection is not limited to the cell with the custom cell editor

Reproduction of the problem

  1. Run the Custom Editors Demo
  2. Click on cell B2 and open the list popup with available values for selection
  3. Press the right arrow key on the keyboard
  4. Select a value from the list
  5. The selected value will be applied to cell C2

Current behavior

The selected value is applied to cell other then the one using the custom cell editor

Expected/desired behavior

The selected value should be applied only to the cell with the custom cell editor

Environment

  • Kendo UI version: 2020.2.617
  • Browser: [all]
Unplanned
Last Updated: 08 Jul 2020 07:55 by ADMIN
Created by: Naveen
Comments: 0
Category: Spreadsheet
Type: Feature Request
1
It would be useful to have a method capable of executing a formula without assigning it to a cell in the Spreadsheet.
Unplanned
Last Updated: 06 Aug 2020 08:18 by Naveen
Created by: Naveen
Comments: 0
Category: Spreadsheet
Type: Bug Report
1

Bug report

Memory usage is increased if the DevTools is open. Navigation between sheets is also slower.

Reproduction of the problem

  1. Open our Spreadsheet demo in Chrome.
  2. Import the attached Spreadsheet.
  3. Open the Task Manager to check Chrome memory usage, and switch sheets to see the navigation speed.
  4. Open DevTools and check memory usage again. Note that switching sheets is also significantly slower.

Current behavior

Memory usage increased and slower sheet change.

Expected/desired behavior

Memory usage should not be increased and sheet navigation should not be slow.

Environment

  • Kendo UI version: 2020.2.619
  • Browser: [all]
Completed
Last Updated: 06 Nov 2020 15:19 by ADMIN
Release 2020.R3.SP.next

Hello,

 

I have some problems with setting up correct Cell Validation for my use-case. I want to create a list validation which is going to have a numeric options instead of typical string values.

So in order to achieve that I created a following cell validation:


{
    dataType: "list",
    showButton: true,
    comparerType: "list",
    from: '{1,2,3,4,5}',
    allowNulls: true,
    type: "reject"
}

 

Everything works fine in the widget, but the problems starts when I want to Export the following spreadsheet to Excel format. I'm getting the following message when trying to open such file:

 

In the past I had a similar problem with the list validation (but for string values) (https://www.telerik.com/account/support-tickets/view-ticket/1381434)

There you suggested to create a validation using different format for "from" property. So I decided to change it from:

from: '{1,2,3,4,5}',

to

from: '"1,2,3,4,5"',

 

After that I can freely export the spreadsheet without any problems, but then my list is inserting string values instead of numeric ones, therefore this solution is not suitable for my use-case.


And my question is: Is there a possibility to create a Cell validation where I can put numeric values as a possible options without breaking the export process? 

 

Here's a example spreadsheet, which I used to reproduce this behavior: https://dojo.telerik.com/IfuMIbic

 

Best regards,

Unplanned
Last Updated: 02 Nov 2020 18:22 by ADMIN
Created by: Peter
Comments: 0
Category: Spreadsheet
Type: Feature Request
1

Hi Team,

I would like to request the ability to set an autoFit for the rows/columns(specific or all).  This would not just related to wrapping. 

For example, in the following Progress Kendo UI Dojo, the user can create 3 lines by button press.  But if the user replaces the contents with 1 line of text, it will keep the height of when the 3 lines were in cell.  

I know I could use the rowHeight method, but it would be great if there was a way for it to resize automatically.

Thank you for your consideration.

Unplanned
Last Updated: 03 Nov 2020 21:35 by ADMIN
Created by: PON
Comments: 0
Category: Spreadsheet
Type: Feature Request
1

Hi Team,

I'd like to request a built in method for finding the intersection of ranges for the Kendo UI Spreadsheet.  

Thank you

Completed
Last Updated: 02 Dec 2021 12:31 by ADMIN
Release 2021.R1.SP1
Created by: ANDREY
Comments: 0
Category: Spreadsheet
Type: Bug Report
1

Bug report

Related To: #5500

When there are merged cells and the SUM formula is used for the merged cells the result is wrong (it depends on the count of the merged cells)

Reproduction of the problem

  1. Open the Dojo
  2. Enter for example 5 in the merged cells (A1:B2)

Current behavior

The result in the D1 cell is 20. ( value of cell * count of cells in merged range)

Expected/desired behavior

The result should be 5. In the same scenario, the result in Excel will be 5.

Environment

  • Kendo UI version: 2020.3.1118
  • Browser: [all ]
Completed
Last Updated: 02 Feb 2024 15:34 by ADMIN
Created by: Naveen
Comments: 0
Category: Spreadsheet
Type: Bug Report
1

Bug report

Reproduction of the problem

Reproducible in the demos. The attached video demonstrates the issue.
Recording49.zip

  1. Reduce to minimum the width of several adjacent columns
  2. Increase the width of one of them

Current behavior

As shown in the video, the F column completely disappears. The column letter remains visible within the next column (G). F column's resize handle remains hidden, and it cannot be made visible.

Expected/desired behavior

There should be a minimum column width that should be respected on resizing. Its value should always allow the column to be resized. No column overlapping should occur.

Environment

  • Kendo UI version: 2020.3.1118
  • jQuery version: x.y
  • Browser: [Chrome 87 ]
Unplanned
Last Updated: 25 Dec 2020 14:18 by ADMIN

Can you add feature or set option to allow text to run into adjacent cells to right? 

(example in ticket 1500102)

Unplanned
Last Updated: 25 Dec 2020 14:28 by ADMIN
Created by: greg
Comments: 0
Category: Spreadsheet
Type: Feature Request
1
I am using the Jquery Spreadsheet control and have a hyperlink in a cell. When I click on that hyperlink it opens a new browser tab entitled 'about:blank#blocked'

 

example usage of cell HYPERLINK formula linking to another sheet within the same workbook:

=HYPERLINK("#SHEET1!B6", "MYHYPERLINK")

 

opens browser tab:       about:blank#blocked

 

1. How do I get it to jump to the correct sheet and not open a new page?

2. How do I unblock the page so it shows in the case when a new page tab opens?  'about:blank#blocked'

 

Thank you.
Unplanned
Last Updated: 07 Jan 2021 11:16 by ADMIN
Created by: Steven
Comments: 0
Category: Spreadsheet
Type: Feature Request
1

Currently, when an invalid validation formula is used, the Spreadsheet throws a js exception.

For example: https://dojo.telerik.com/AWEyIHoW

Open the Data/Data Validation dialogue on cell A3 and modify the Value of the Formula into an Invalid formula (e.g. : “>3”)

A parse error is thrown.

It would be a nice improvement, if instead of throwing a js exception, the user is notified about the invalid formula through a dialog showing a relevant message.

Unplanned
Last Updated: 09 Feb 2021 12:35 by ADMIN
Created by: Jong
Comments: 1
Category: Spreadsheet
Type: Feature Request
1

Currently, Kendo UI for jQuery Spreadsheet does not support many events such as style change, merge, unmerge, image insert, font change, alignment change, decimal change, filters and more.

But these events need to be captured in many cases.

Please support events for all the actions.

Completed
Last Updated: 27 Oct 2022 06:24 by ADMIN
Release R1.2023-Increment.1(09.Nov.2022)

Bug report

Spreadsheet throws error when opening a xlsx file containing diagonal borders.

Reproduction of the problem

  1. Try to open a xlsx file, containing a cell with diagonal borders:
    image
    Sample File:
    DiagonalBorderTest.xlsx

Current behavior

Spreadsheet crashes and throws an error Uncaught TypeError: Cannot set property 'color' of undefined

Expected/desired behavior

The file should open.

Environment

  • Kendo UI version: 2021.1.330
  • Browser: [all]