JSFiddle - React, Tailwind, and code Playground

by callmepc

HTML

<script src="http://dl.dropbox.com/u/40036711/Scripts/kendo.all.min.js"></script>
<link rel="stylesheet" href="http://dl.dropbox.com/u/40036711/CSS/kendo.protrans.css">
<link rel="stylesheet" href="http://dl.dropbox.com/u/40036711/CSS/kendo.common.min.css">
<div class="form-row">
                <label class="grid-2">Load Begin Date:</label>
                <div class="grid-3"><input id="datepickerfrom" name="fromDate" value="" style="width:215px;"/></div>
            </div>
            <div class="form-row">
                <label class="grid-2">Load End Date:</label>
                <div class="grid-3"><input id="datepickerto" name="toDate" value="" style="width:215px;"/></div>
            </div>

JavaScript

$("#datepickerfrom").kendoDatePicker({
            //value: new Date(),
            min: new Date(2001, 0, 1)
        });

        $("#datepickerto").kendoDatePicker({
            //value: new Date(),
            min: new Date(2001, 0, 1)
        });