sheets.rows.cells.enableBoolean
If set to false, disables the cell.
Example
<div id="spreadsheet"></div>
<script>
$("#spreadsheet").kendoSpreadsheet({
sheets: [{
rows: [{
cells: [{
value: "Disabled cell",
enable: false
}]
}]
}]
});
</script>
In this article