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

Copy

events

Fired when a range of a sheet is about to be copied.

Event Data

e.sender kendo.ui.Spreadsheet

The widget instance which fired the event.

e.range kendo.spreadsheet.Range

The Range that is selected and about to be copied.

e.preventDefault Function

If invoked the range data will not be retained in the clipboard.

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