2.2.8 • Published 8 years ago

kendo-multi-calendar v2.2.8

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

kendo-multi-calendar

npm version Build Status codecov Dependency Status devDependency Status typings included npm

Build Status

Extended Kendo UI Calendar widget that supports multiselection. Demo

Installation

npm i kendo-multi-calendar

kendo-multi-calendar(.min).js script should be included in your project along with kendo-ui-core or kendo-ui.

Usage

var multiCalendar = $("#multiCalendar").kendoMultiCalendar({
    // use 'values' option instead of 'value',
    // defaults to []
    values: [new Date(), new Date(2016, 5, 2)], 

    // set selection limits, 
    // defaults to null - no limit
    maxSelectedItems: 3,

    // if true - only today date will be selected after click on date in footer,
    // if false - today date will be added to selected dates,
    // defaults to true
    cleanSelectedItemsOnTodayClick: false,

    //... everything else is just like in ordinary Kendo UI Calendar
}).data('kendoMultiCalendar');

multiCalendar.values([]);

Typescript

This module also contains type declarations.

// use 'reference' directive
/// <reference path="node_modules/kendo-multi-calendar/dist/kendo-multi-calendar.d.ts" />

// or add types to 'compilerOptions' in your tsconfig.json:
// ...
// "types": [ "kendo-multi-calendar" ],
// ...

const calendar = new kendoExt.MultiCalendar('#multiCalendar');
2.2.8

8 years ago

2.2.7

8 years ago

2.2.6

9 years ago

2.2.5

9 years ago

2.2.2

9 years ago

2.2.1

10 years ago

2.2.0

10 years ago

2.1.4

10 years ago

2.1.3

10 years ago

2.1.2

10 years ago

2.0.9

10 years ago

1.0.3

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago

0.1.0

10 years ago