Hello - I expect what I want to do is not supported. I that it he case, then I'll abandon this cool idea I have and not use the kendo spreadsheet.
I need a view-only mode that just shows the cells where they cannot be edited/modified. I need an admin-only mode where the entire spreadsheet control is functional.
For the view-only mode I tried the following, which does hide most of the stuff I don't want. But it requires more work to adjust heights and handle click events, at least. As it is when I do this various script errors are occurring when I click within the spreadsheet div:
$(document).ready(function () {
$('.k-spreadsheet-sheets-bar').hide();
$('.k-tabstrip-wrapper').hide();
$('.k-spreadsheet-action-bar').hide();
$('.k-spreadsheet-scroller').hide();
$('.k-spreadsheet-column-header').hide();
$('.k-spreadsheet-row-header').hide();
});