{ claus.conrad }

Inspecting a Kendo UI Datepicker for theming

📅 Aug 21, 2014
⌛ 1 minute

The Kendo UI Datepicker has no configuration option to show it all the time. How to inspect and theme it?

We can catch the close event and prevent it like this:

var datepicker = $("#datepicker").data("kendoDatePicker");
datepicker.bind("close", function(e) {
  e.preventDefault();
});