JSFiddle - React, Tailwind, and code Playground

by siliconsoul

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.322/js/kendo.all.min.js"></script>
<input id="AddProgramsClassification" />

JavaScript

$("#AddProgramsClassification").kendoComboBox({
    dataTextField: "Text",
    dataValueField: "Value",
    filter: "contains",
    suggest: true,
    dataSource: { 
        transport: { 
            read:{
                url: '/echo/json/',
                type: "POST",
                dataType: "json",
                data: kendo.stringify( [
                    {Text: "Text1",Value: 1},
                    {Text: "Text2",Value: 2}
                    {Text: "Text3",Value: 3}])
            } 
        }
     }
});