Hi,
In my spreadsheet user will open file and maybe make some changes. How can I get that data from opened file and data from opened file after editing (in case that happened)?
Also, why I get 2 horizontal scrolls and vertical is missing? I did the same like in first example here https://ej2.syncfusion.com/angular/documentation/spreadsheet/open-save/#open-and-save
Best regards,
Kristina
|
btnClick() {
var sheet = this.spreadSheetInstance.getActiveSheet();
var activeSheetName = sheet.name;
var usedRange = activeSheetName + "!" + getRangeAddress([0, 0, sheet.usedRange.rowIndex, sheet.usedRange.colIndex]);
this.spreadSheetInstance.getData(usedRange).then(data => console.log(data));
}
|
Hi Janakiraman,
thank you for your answer. Now I have data, so Question 1 is closed. But for some reason I still have the same problems with scrollbars. This is how my spreadsheet looks like:
Best regards,
Kristina