Hello, Eric,
In order to implement this behavior, a good approach is to attach a click event to the input of the datepicker. This could happen in the document.ready event. Here is an example:
$(document).ready(function () {
$("#datepicker").click(function () {
$("#datepicker").attr('disabled', true);
var datepicker = $("#datepicker").data("kendoDatePicker");
datepicker.open();
$("#datepicker").attr('disabled', false);
});
})
Please let me know if you have any other questions.
Best Regards,
Anton Mironov
Progress Telerik
Progress is here for your business, like always.
Read more about the measures we are taking to ensure business continuity and help fight the COVID-19 pandemic.
Our thoughts here at Progress are with those affected by the outbreak.