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

FromFile

methods

Clears the spreadsheet and populates it with data from the specified Excel (.xlsx) file.

Requires Internet Explorer 10 or a recent version of other browsers. The JSZip library is a prerequisite for the import from file functionality.

Parameters:blobBlob|File

The file or blob that is usually obtained through a file input.

Returns:Promise

- A promise that will be resolved when the import operation completes.

<input id="file" type="file" />
<div id="spreadsheet"></div>
<script>
    $("#spreadsheet").kendoSpreadsheet();

    $("#file").on("change", function() {
        var spreadsheet = $("#spreadsheet").data("kendoSpreadsheet");
        spreadsheet.fromFile(this.files[0]);
    });
</script>
Not finding the help you need?
Contact Support