JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://cdn.kendostatic.com/2013.1.319/js/kendo.all.min.js"></script>
<link rel="stylesheet" href="http://cdn.kendostatic.com/2013.1.319/styles/kendo.common.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2013.1.319/styles/kendo.default.min.css">
<div id="people">
<div data-role="grid"
data-bind="source: people"
data-editable="inline"
data-columns='[{"field": "firstName", "title": "First Name"},
{"field": "lastName", "title": "Last Name"},
{ "command": ["edit", "destroy"] } ]'>
</div>
</div>
JavaScript
var peopleDataSource = new kendo.data.DataSource({
data: [
{ id: 0, firstName: "John", lastName: "DeVight" },
{ id: 0, firstName: "Wendy", lastName: "Parry" }
],
schema: {
model: {
id: "id"
}
}
});
// Create an observable object.
var vm = kendo.observable({
people: peopleDataSource
});
kendo.bind($("#people"), vm);