sheets.dataSourcekendo.data.DataSource
The DataSource instance for this sheet. For more information, refer to the article on binding to the DataSource.
Example
<div id="spreadsheet"></div>
<script>
$("#spreadsheet").kendoSpreadsheet({
sheets: [{
dataSource: new kendo.data.DataSource({
data: [
{ Name: "John", Age: 30 },
{ Name: "Jane", Age: 25 }
]
})
}]
});
</script>
In this article