sheets.rows.indexNumber

The absolute row index. Required to ensure correct positioning.

Example

<div id="spreadsheet"></div>
<script>
$("#spreadsheet").kendoSpreadsheet({
    sheets: [{
        name: "MySheet",
        rows: [{
            index: 0,
            cells: [{
                value: "Row 1"
            }]
        }, {
            index: 3,
            cells: [{
                value: "Row 4 (skipping rows 2 and 3)"
            }]
        }]
    }]
});
</script>
In this article
sheets.rows.index
Not finding the help you need?
Contact Support