MultiViewCalendar Overview

The MultiViewCalendar renders a graphical Gregorian calendar with multiple horizontal views.

It supports the selection and navigation between dates as well as data templates and ranges for scheduling appointments.

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

The MultiViewCalendar-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 MultiViewCalendar in action.

Example
View Source
Change Theme:

Functionality and Features

Events

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

<div id="vueapp" class="vue-app">
    <kendo-multiviewcalendar  v-on:navigate="onNavigate"></kendo-multiviewcalendar>
</div>
Vue.use(DateinputsInstaller);
new Vue({
	el: '#vueapp',
	methods: {
		onNavigate: function (e) {
			var view = e.sender.view();
			console.log(view.name); //the name of the current view

			var current = e.sender.current();
			console.log(current); //currently the focused date
		}
	}
})