sheets.rows.typeString

The table row element role in the context of the Grid table structure.

Example

<div id="spreadsheet"></div>
<script>
$("#spreadsheet").kendoSpreadsheet({
    sheets: [{
        name: "MySheet",
        rows: [{
            type: "data",
            cells: [{
                value: "Data row"
            }]
        }, {
            type: "header",
            cells: [{
                value: "Header row"
            }]
        }]
    }]
});
</script>
In this article
sheets.rows.type
Not finding the help you need?
Contact Support