sheetsArray
An array which defins the document sheets and their content.
Example
<div id="spreadsheet"></div>
<script>
$("#spreadsheet").kendoSpreadsheet({
sheets: [
{
name: "Sheet1",
rows: [
{ cells: [{ value: "A1" }, { value: "B1" }] },
{ cells: [{ value: "A2" }, { value: "B2" }] }
]
},
{
name: "Sheet2",
activeCell: "B2"
}
]
});
</script>
In this article