JSFiddle - React, Tailwind, and code Playground
by korchev
HTML
<link rel="stylesheet" href="http://cdn.kendostatic.com/2012.1.322/styles/kendo.common.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2012.1.322/styles/kendo.default.min.css">
<script src="http://cdn.kendostatic.com/2012.1.515/js/kendo.all.min.js"></script>
<div id="grid"></div>
JavaScript
tGrid = $("#grid").kendoGrid({
dataSource: [{ Name: "Name", Description: "Description" }],
editable: false,
groupable: false,
filterable: true,
sortable: true,
pageable: true,
scrollable: false,
height: 400,
columns: [{
field: "Name"
}, {
field: "Description"
},
{ command: [{ name: "edit" }, { name: "destroy"}], width: "200px" }
]
});