Unplanned
Last Updated: 24 Jul 2024 12:19 by ADMIN
Created by: Ekaterina
Comments: 3
Category: Spreadsheet
Type: Feature Request
1

Hello.

I have a spreadsheet containing some number of sheets. I would like to implement a function that would print the active sheet. Is there such a possibility? 

const toolbar = [
    {
        text: 'Tab',
        selected: true,
        tools: [ExcelExport],
    },
]
const Sheets = () => {
   

const spreadsheetRef= React.useRef(null)

const onExcelExport = async (event) => {
   event.preventDefault()
   //...

}

return (

<Spreadsheet
    ref = {spreadsheetRef}
    defaultProps = {data}
    toolbar = {toolbar}
  onExcelExport = {onExcelExport}
/>

)

}


Unplanned
Last Updated: 22 Jul 2024 07:19 by ADMIN
Created by: Dhruv
Comments: 1
Category: Spreadsheet
Type: Feature Request
1
I want to change the focus of my spreadsheet to a given cell in a given sheet, But I am unable to do so. I am using React for frontend. The user will give the cell coordinate and the sheet name.
Unplanned
Last Updated: 06 Jun 2024 08:08 by Brad

I'm submitting a...

  • Bug report

Current behavior

When importing Excel files that contain values with a currency formatting, the currency signs are not displayed correctly.
image

Expected behavior

When importing an Excel file, the data displayed in the Spreadsheet component should look the same way as in the imported document.

Minimal reproduction of the problem with instructions

  1. Download this SampleData.xlsx file
  2. Go to this example from the documentation
  3. Click on "File -> Folder Icon"
  4. In the popup select the downloaded file and import it

Environment

Package versions:
KendoReact 8.0.0

Planned
Last Updated: 04 Jun 2024 15:06 by ADMIN
Created by: ACHAL
Comments: 4
Category: Spreadsheet
Type: Feature Request
11

Hi, 

I'm in need of the dropdown feature in spreadsheet cells. I had been using the Kendo Spreadsheet React Wrapper which had the dropdown feature but since the latest update to Kendo React Spreadsheet I have been facing issues. Please try to get this feature as soon as possible and I'm sure this will be helpful for other users, too.

Thank you.

 

Unplanned
Last Updated: 28 May 2024 05:49 by ADMIN
Created by: Harshini
Comments: 1
Category: Spreadsheet
Type: Feature Request
0
I'm looking for implementing expandable and collapsible columns in the spreadsheet. An implementation of the same would be appreciated, in JS
Unplanned
Last Updated: 27 May 2024 20:33 by ADMIN
Created by: Jessica
Comments: 1
Category: Spreadsheet
Type: Feature Request
0
The current export feature on the spreadsheet includes styling. It would be nice to have an option to export the data without the style aspect to save as rows of raw data instead of having to manually extract it myself.