<input id="datepickerF" value="" style="width:150px;">
<input id="datepickerT" value="" style="width:150px;">
$(document).ready(function() {
$("#datepickerF").kendoDatePicker({
// defines the start view
startView: "year",
// defines when the calendar should return date
depth: "year",
// display month and year in the input
format: "MMMM yyyy",
});
$("#datepickerT").kendoDatePicker({
// defines the start view
startView: "year",
// defines when the calendar should return date
depth: "year",
// display month and year in the input
format: "MMMM yyyy",
});
});
Marcus