JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://cdn.kendostatic.com/2012.1.322/js/kendo.web.min.js"></script>
<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">
<div id="grid" data-role="grid" data-sortable="true" data-bind="source: data"
data-source='{"schema":{"model":{"fields":{"name":{}, "age":{"type":"number"}}}}}' data-filterable="row">
</div>
CSS
.right {
text-align: right !important;
}
JavaScript
kendo.ui.Grid.fn.options.filterable = false;
kendo.bind($("#grid"), {
data: [
{ name: "John Doe", age: 22 },
{ name: "Jahn Doe", age: 25 },
]
});