Inspecting a Kendo UI Datepicker for theming
We can catch the close event and prevent it like this:
var datepicker = $("#datepicker").data("kendoDatePicker");datepicker.bind("close", function(e) { e.preventDefault();});We can catch the close event and prevent it like this:
var datepicker = $("#datepicker").data("kendoDatePicker");datepicker.bind("close", function(e) { e.preventDefault();});