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.web.min.js"></script>
<div id="grid" data-role="grid" data-sortable="true" data-bind="source: data" 
data-source='{"schema":
{
    "model":{
       "fields":{
          "name":{}, 
          "age":{"type":"number"
        }
    }
  }
 }
}' data-filterable="true"
data-columns='[{"field":"name", "filterable":false}, {"field":"age"}]'>
</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 },
    ]
});