Unplanned
Last Updated: 10 Jun 2024 14:23 by ADMIN
Kendo UI
Created on: 10 Jun 2024 14:22
Category: Spreadsheet
Type: Feature Request
2
[Spreadsheet] Event/Callback when imported Excel file is complete


Provide an event or callback that notifies when the imported Excel file is complete and available in the Spreadsheet. A similar event from the Kendo jQuery widget is render:

https://docs.telerik.com/kendo-ui/api/javascript/ui/spreadsheet/events/render

The main advantage of this event/callback will provide the ability to see the data in advance and customize the cells if needed or adjust any other parts of the workbook. 

Currently, to achieve the same, a setTimeout needs to be used:

 public onExcelImport(ev: SpreadsheetExcelImportEvent) {
    setTimeout(() => {
      const desc = ev.sender.toJSON();
    }, 1000);
  }


0 comments