JSFiddle - React, Tailwind, and code Playground

by OnaBai

HTML

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<script src="http://cdn.kendostatic.com/2012.2.710/js/kendo.all.min.js"></script>
<link rel="stylesheet" href="http://cdn.kendostatic.com/2012.2.710/styles/kendo.common.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2012.2.710/styles/kendo.default.min.css">
<div id="search">
    <div id="grid" data-role="grid" data-bind="source: datasource"
         data-pageable='{
                "previousNext": true,
                "numeric": true,
                "pageSizes": true,
                "info": true
             }'>
    <div>
</div>

JavaScript

$(function() {
    var vm = kendo.observable( {
        datasource: new kendo.data.DataSource({
            data: [{a:1,b:'hola'},{a:2,b:'adios'}],
            pageSize: 10
        })
    });
    kendo.bind('#search',vm);
    $("select", "#grid").parent().css("display", "");
});