For example, I have a column like this :
A
50
65
73
NULL
63
I can get values of selected range
let sh = $("#spreadsheet").getKendoSpreadsheet();
var sheet = sh.activeSheet();
var range = sheet.selection();
var values = range.values();
and want to get all values of A column without selecting. Is there a method in kendo-spreadsheet like i want? What should i do ?
You can get the values in a specific range using the
rangefunction, like this:You can see a demo in the following snippet: