TOAST UI Calendar is a full-featured calendar. Experience various view types, default popups, dragging or resizing schedules and customizable theme which is easy to use.
![]() |
![]() |
![]() |
![]() |
![]() |
---|---|---|---|---|
Yes | +9 | Yes | Yes | Yes |
Monthly | Weekly |
---|---|
![]() |
![]() |
Daily | 2 Weeks |
---|---|
![]() |
![]() |
Dragging | Resizing |
---|---|
![]() |
![]() |
Creation Popup | Detail Popup |
---|---|
![]() |
![]() |
TOAST UI products can be used by using the package manager or downloading the source directly. However, we highly recommend using the package manager.
TOAST UI products are registered in two package managers, npm and bower. You can conveniently install it using the commands provided by each package manager. When using npm, be sure to use it in the environment Node.js is installed.
$ npm install --save tui-calendar # Latest version
$ npm install --save tui-calendar@<version> # Specific version
$ bower install tui-calendar # Latest version
$ bower install tui-calendar#<tag> # Specific version
TOAST UI products are available over the CDN powered by TOAST Cloud.
You can use the CDN as below.
<script src="https://uicdn.toast.com/tui.code-snippet/latest/tui-code-snippet.js"></script>
<script src="https://uicdn.toast.com/tui-calendar/latest/tui-calendar.js"></script>
<link rel="stylesheet" type="text/css" href="https://uicdn.toast.com/tui-calendar/latest/tui-calendar.css" />
If you want to use a specific version, use the tag name instead of latest
in the url's path.
The CDN directory has the following structure.
tui-calendar/
├─ latest/
│ ├─ tui-calendar.js
│ └─ tui-calendar.min.js
│ └─ tui-calendar.css
│ └─ tui-calendar.min.css
├─ v1.0.0/
│ ├─ ...
Place a <div></div>
where you want TOAST UI Calendar rendered.
<body>
...
<div id="calendar" style="height: 800px;"></div>
...
</body>
var Calendar = tui.Calendar;
var Calendar = require('tui-calendar'); /* CommonJS */
require("tui-calendar/dist/tui-calendar.css");
import Calendar from 'tui-calendar'; /* ES6 */
import "tui-calendar/dist/tui-calendar.css";
Then you can create a calendar instance with options to set configuration.
var calendar = new Calendar('#calendar', {
defaultView: 'month',
taskView: true,
template: {
monthGridHeader: function(model) {
var date = new Date(model.date);
var template = '<span class="tui-full-calendar-weekday-grid-date">' + date.getDate() + '</span>';
return template;
}
}
});
Or you can use jquery plugin. You must include jquery before using this jquery plugin.
$('#calendar').tuiCalendar({
defaultView: 'month',
taskView: true,
template: {
monthGridHeader: function(model) {
var date = new Date(model.date);
var template = '<span class="tui-full-calendar-weekday-grid-date">' + date.getDate() + '</span>';
return template;
}
}
});
You can also see the older versions of API page on the releases page.
This software is licensed under the MIT © NHN Entertainment.