refresh

Re-renders all data in the Spreadsheet. In a DataSource binding scenario, uses the current data items to populate the widget.

Example

<div id="spreadsheet"></div>
<script>
var spreadsheet = $("#spreadsheet").kendoSpreadsheet({
    sheets: [{
        name: "MySheet",
        rows: [{
            cells: [{ value: "Initial Data" }]
        }]
    }]
}).data("kendoSpreadsheet");

// Modify data programmatically
var sheet = spreadsheet.activeSheet();
sheet.range("A1").value("Updated Data");

// Refresh the view
spreadsheet.refresh();
</script>
In this article
refresh
Not finding the help you need?
Contact Support