JSFiddle - React, Tailwind, and code Playground

by stevescotthome

HTML

<script src="http://cdn.kendostatic.com/2011.2.804/js/kendo.all.min.js"></script>
<link rel="stylesheet" href="http://cdn.kendostatic.com/2011.2.804/styles/kendo.common.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2011.2.804/styles/kendo.kendo.min.css">
<table id="grid"></table>

JavaScript

$("#grid").kendoGrid( {
    columns: [
        { title: "Unique ID", template: "<#= data[0] #>" },
        { title: "Parent", template: "<#= data[1] #>" },
        { title: "DisplayName", template: "<#= data[2] #>", encode:false }
    ],
    dataSource: [         
                [
                "010023831054", "17800386", "<b>Pathfinder</b> House, St Marys Street, Huntingdon, PE29 3TN", "Property", "523999", "271531", "22%", "Pathfinder House,  St Marys Street, Huntingdon, PE29 3TN", "100"
                ]
                ,
                [
                "010090390725", "17800386", "Customer Service Centre, <b>Pathfinder</b> House, St Marys Street, Huntingdon, PE29 3TN", "Property", "524029", "271563", "15%", "Customer Service Centre, Pathfinder House,  St Marys Street, Huntingdon, PE29 3TN", "100"
                ]
                 
    ]
});