I am using Kendo DateTimePicker.
Here is my example: http://dojo.telerik.com/IxALA/2
My example does:
Problem: The Datetimepicker gets an ugly shadow around the top and bottom on reset. How can I avoid this?
Here is the Kendo documentation on reseting the Datetimepicker: http://docs.telerik.com/kendo-ui/api/javascript/ui/datetimepicker#methods-value
<div style="width:240px">
<input id="datetimepicker" />
</div>
<script>
$("#datetimepicker").kendoDateTimePicker({
value: new Date(2010,10,34)
});
setTimeout(function(){
var picker = $("#datetimepicker").data("kendoDateTimePicker");
picker.value(new Date(2015, 10, 10));
},2000);
</script>