New to Kendo UI for jQueryStart a free 30-day trial

Triggered when a sheet will be activated. Introduced in the 2017 Q1 release.

Event Data

e.sender kendo.ui.Spreadsheet

The widget instance which fired the event.

e.sheet kendo.spreadsheet.Sheet

The sheet instance which will be activated.

e.preventDefault Function

If invoked, the Spreadsheet will not activate the sheet.

<div id="spreadsheet"></div>
<script>
$("#spreadsheet").kendoSpreadsheet({
    selectSheet: function(e) {
        console.log("Sheet being selected:", e.sheet.name());
        // e.preventDefault(); // Uncomment to prevent selection
    }
});
</script>
Not finding the help you need?
Contact Support