Skip to content

Files

Latest commit

 

History

History
44 lines (31 loc) · 1.48 KB

File metadata and controls

44 lines (31 loc) · 1.48 KB
title page_title description slug position
Data Binding
Data Binding - Spreadsheet - Kendo UI for Vue
Bind the Kendo UI Spreadsheet wrapper for Vue to local data arrays.
databinding_spreadsheet
1

Data Binding

The Spreadsheet enables you to bind it to a list of possible values.

To populate the Spreadsheet with data, bind it to either:

Binding to Local Data Arrays

To populate the Spreadsheet with local data:

  1. Define the data array in the data object of the Vue application.
  2. Refer the data object in the <kendo-spreadsheet-sheet> component through the :data-source prop.

{% meta height:460 %} {% embed_file data-binding/local/main.vue preview %} {% embed_file data-binding/local/main.js %} {% endmeta %}

Binding to Remote Data Services

The following example demonstrates how to bind the spreadsheet to remote data.

{% meta height:460 %} {% embed_file data-binding/remote/main.vue preview %} {% embed_file data-binding/remote/main.js %} {% endmeta %}

Suggested Links