JSFiddle - React, Tailwind, and code Playground

by korchev

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">
<table id="grid">
    <thead>
        <tr>
            <th>Name</th>
            <th class="right">Age</th>
        </tr>
    </thead>
</table>

CSS

.right {
    text-align: right !important;
}

JavaScript

$("#grid").kendoGrid({
    dataSource: [ { name: "John Doe", age: 22 } ],
    rowTemplate: '<tr><td>#: name #</td><td class="right">#: age #</td>'
});