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]
Unplanned
Last Updated: 13 Jul 2021 09:50 by ADMIN

When values in the sheet are updated using the batch method the DataSource does not update according to changes.

Dojo: https://dojo.telerik.com/@iankodj/IRUdufOx

1. Run the example

2. Check the console showing "no data" and an empty array.

 

Expected: https://dojo.telerik.com/@iankodj/EKoziCic 

Unplanned
Last Updated: 01 Jul 2021 05:18 by ADMIN

When there is formatting and decimals are rounded negative numbers that round to zero show a negative sign. In Excel those are shown without the negative sign. 

Dojo example: https://dojo.telerik.com/@iankodj/azEMIRUv/21

Unplanned
Last Updated: 17 May 2021 06:25 by serge

Bug report

When the Sheetsbar is hidden the horizontal scrollbar is not adjusted to the bottom of the widget

Reproduction of the problem

  1. Run this dojo
  2. Note the space below the horizontal scrollbar:
    image

Expected/desired behavior

The horizontal scrollbar should be adjusted to the bottom of the widget.

As a possible workaround, when hiding the Sheetsbar add the following styling:

<style>
    .k-spreadsheet-sheets-bar {
      padding: 0;
      border-style: none;
    }
</style>

Environment

  • Kendo UI version: 2021.2.511
  • Browser: [all]
Unplanned
Last Updated: 10 May 2021 13:45 by ADMIN
Created by: Jaspreet
Comments: 0
Category: Spreadsheet
Type: Feature Request
1

The spreadsheet currently relies on the <v> tag and doesn't accept cell type "inlineStr". Here is an article with more info regarding the inlineStr type:

https://c-rex.net/projects/samples/ooxml/e1/Part4/OOXML_P4_DOCX_c_topic_ID0E1XM4.html 

A cell of type "inlineStr" which is currently not accepted in SpredSheet

<c r="F2" s="4" t="inlineStr">
        <is>
          <t>1005131528</t>
        </is>
      </c>

 

while the format saved from excel is accepted:

 

<c r="F2" s="2" t="s">
        <v>12</v>
      </c>

Ticket ID: 1517963


Unplanned
Last Updated: 12 Apr 2021 13:40 by ADMIN

Scrolling to a column that is not visible initially and using the Freeze Panes tool, makes the scrollbar of the Spreadsheet unusable. This valid for both horizontal and vertical scrolling. It is observable in the demos: https://demos.telerik.com/kendo-ui/spreadsheet/index

Scroll right to the "R" column. Select it and click on the the "Freeze panes" tool in the toolbar.

Alternatively, scroll down to row 30. Select a cell and click on the the "Freeze panes" tool.

As a result, scrolling the columns (respectively the rows) becomes impossible.

Consider a way to enhance the Freeze panes functionality, so that is is usable in these scenarios.

Unplanned
Last Updated: 12 Apr 2021 13:24 by Sandeep

Describe the bug

To reproduce
Steps to reproduce the behavior:

  1. Go to https://dojo.telerik.com/avuXEJUV/2
  2. Scroll the Spreadsheet horizontally to the "J" column.
  3. Click the header of the "J" column to select it.
  4. Activate the "Freeze Panes" tool from the toolbar.
  5. The Spreadsheet re-renders. The scroll bar does not scroll the columns past "G". A browser scrollbar appears. Use it to scroll horizontally beyond the right border of the Spreadsheet. Some of the columns are displayed outside the Spreadsheet. Once they are visible, scroll horizontally to the far right using the Spreadsheet scrollbar. Column A is duplicated after column AX.

Expected behavior
The panes are frozen without breaking the layout of the Spreadsheet and without cells/column duplication.

Affected package (please remove the unneeded items)

  • theme-default
  • theme-bootstrap
  • theme-material

Affected suites (please remove the unneeded items)

  • Kendo UI for jQuery

Affected browsers (please remove the unneeded items)

  • All

Build system information (please remove the unneeded items)

  • Not Applicable

Additional context
Add any other context about the bug.

Unplanned
Last Updated: 12 Apr 2021 09:53 by ADMIN
Created by: Sandeep
Comments: 1
Category: Spreadsheet
Type: Bug Report
1

Hi Team,

 

When I add comments to enabled columns(product)it is allowing me to add and after reopening the comments it is retained. But when I add comments to disabled columns(ID) it is not adding to it and no messages are added like it is disabled and comments are not allowed.

demo: https://dojo.telerik.com/ISIvATiN

thanks.

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.

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: 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: 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: 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

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: 21 Apr 2023 06:59 by ADMIN

Related to this ticket View Ticket | Your Account (telerik.com) (id: 1605513)

Basically, when all the rows fit in the viewport, the horizontal scrollbar should be entirely hidden instead of always visible.

 

 
Unplanned
Last Updated: 27 Apr 2023 09:33 by EK

Bug report

In the Spreadsheet, if you freeze too many columns and then try to export to Excel, the file is corrupted.

If you reduce the number of columns in the example below, the issue does not occur.

Reproduction of the problem

  1. Open this example
  2. Click the frozen rows button
  3. Click the Export to Excel button

Current behavior

The exported file is corrupted and cannot be opened

Expected/desired behavior

The file should not be corrupted

Environment

  • Kendo UI version: 2023.1.314
  • Browser: [all]
Unplanned
Last Updated: 07 Mar 2024 07:27 by ADMIN

Hi

Is it possible to only move between "open cells for input. " With fx. using tab or enter. 

When you are input finance data. It would be nice, that with a tab, it only moves between open cell. Is this possible. 

On all browser, but mainly edge, chrome , 

 

reg. jakob

Unplanned
Last Updated: 16 Jun 2022 12:42 by John

Currently, when a custom button is configured in the Spreadsheet toolbar a separator is added before the button. I would like to have an option to configure whether such a separator is to be rendered or not.

I would like to avoid adding custom styles for hiding unneeded separators, which is needed with the current implementation (Dojo). 

 

Unplanned
Last Updated: 26 Feb 2020 15:06 by ADMIN
Created by: kaan
Comments: 3
Category: Spreadsheet
Type: Feature Request
0

Hello,

Is is possible to trigger validation in cells in spreadsheet control? I want to make all validation controls with a button click outside the spreadsheet control.