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

Select

events

Triggered when the Spreadsheet selection is changed. Introduced in the 2017 Q1 release.

Event Data

e.sender kendo.ui.Spreadsheet

The widget instance which fired the event.

e.range kendo.spreadsheet.Range

The Range that is selected.

<div id="spreadsheet"></div>
<script>
$("#spreadsheet").kendoSpreadsheet({
    select: function(e) {
        console.log("Selection changed to:", e.range.ref());
    }
});
</script>
Not finding the help you need?
Contact Support