KendoUI datepicker inside disabled fieldset
by apuchkov
HTML
<link rel="stylesheet" href="http://cdn.kendostatic.com/2013.3.1324/styles/kendo.common.min.css">
<script src="http://cdn.kendostatic.com/2013.3.1324/js/kendo.all.min.js"></script>
<link rel="stylesheet" href="http://cdn.kendostatic.com/2013.3.1324/styles/kendo.default.min.css">
<fieldset disabled="disabled">
<h2>Regular HTML Input</h2>
<input value="value" style="width:150px;" />
<h2>Kendo UI DatePicker</h2>
<input id="datepicker" value="10/10/2011" style="width:150px;" />
</fieldset>
JavaScript
$(document).ready(function() {
$("#datepicker").kendoDatePicker();
});