DatePicker Overview

The DatePicker combines the Kendo UI DateInput and Calendar components.

It enables the user to enter or pick a date value.

The DatePicker wrapper for Vue is a client-side wrapper for the Kendo UI DatePicker widget.

The DatePicker-no- Component is part of Kendo UI for Vue, a professional grade UI library with 100+ components for building modern and feature-rich applications. To try it out sign up for a free 30-day trial.

Basic Usage

The following example demonstrates the DatePicker in action.

Example
View Source
Change Theme:

Functionality and Features

Events

The following example demonstrates basic DatePicker events. You can subscribe to all DatePicker events by the handler name.

<div id="vueapp" class="vue-app">
    <kendo-datepicker v-on:open="onOpen" v-on:close="onClose"></kendo-datepicker>
</div>
Vue.use(DateinputsInstaller);
new Vue({
	el: '#vueapp',
	methods: {
		onOpen: function (e) {
			console.log("DatePicker is opened");
		},
		onClose: function (e) {
			console.log("DatePicker is closed");
		}
	}
})