autoFill Boolean(default: false)

When enabled, the DatePicker will autofill the rest of the date to the current date when the component loses focus. For example, entering only the date, month or year portion of the date and blurring the component, the missing sections will be automatically completed. Requires a DateInput for editing the value.

Example

<input id="datepicker" />
<script>
$("#datepicker").kendoDatePicker({
    dateInput: true,
    autoFill: true
});
</script>
In this article