title | page_title | description | slug | canonicalLink | position |
---|---|---|---|---|---|
Overview |
DateTimePicker Overview - Components - Kendo UI for Vue |
Get an overview of the features the Kendo UI DateTimePicker wrapper for Vue delivers and use the component in Vue projects. |
overview_datetimepicker_wrapper |
0 |
The DateTimePicker combines the Kendo UI DateInput and Calendar components.
It enables the user to enter or pick a date and time value.
The DateTimePicker wrapper for Vue is a client-side wrapper for the Kendo UI DateTimePicker widget.
The following example demonstrates the DateTimePicker in action.
{% meta height:450 %} {% embed_file datetimepicker/basic/main.vue preview %} {% embed_file datetimepicker/basic/main.js %} {% endmeta %}
- [Disabled dates]({% slug disabledates_datetimepicker_wrapper %})
- [Date ranges and formats]({% slug daterangesformats_datetimepicker_wrapper %})
- [Active view and view depth]({% slug startviewdepth_datetimepicker_wrapper %})
- [Week number column]({% slug weekcolumn_datetimepicker_wrapper %})
- [Range selection]({% slug rangeselection_datetimepicker_wrapper %})
- [Intervals]({% slug intervals_datetimepicker_wrapper %})
- [Templates]({% slug templates_datetimepicker_wrapper %})
- [Keyboard navigation]({% slug keyboardnavigation_datetimepicker_wrapper %})
- [RTL support]({% slug rtl_datetimepicker_wrapper %})
The following example demonstrates basic DateTimePicker events. You can subscribe to all DateTimePicker events by the handler name.
<div id="vueapp" class="vue-app">
<kendo-datetimepicker v-on:open="onOpen"
v-on:close="onClose"
style="width: 250px">
</kendo-datetimepicker>
</div>
Vue.use(DateinputsInstaller);
new Vue({
el: '#app',
methods: {
onOpen: function (e) {
console.log("DateTimePicker is opened");
},
onClose: function (e) {
console.log("DateTimePicker is closed");
}
}
})