A JavaScript schedule calendar with full featured. Now your service just got the customizable calendar.
- Browser Support
- What a cool: Monthly, Weekly, Daily and various view types.
- Very easy to use: Dragging and Resizing a schedule
- Ready to use it right now: Default Popups
- Features
- Examples
- Install
- Usage
- Pull Request Steps
- Documents
- Contributing
- Dependency
- License
Chrome | Internet Explorer | Edge | Safari | Firefox |
---|---|---|---|---|
Yes | +9 | Yes | Yes | Yes |
Monthly | Weekly |
---|---|
Daily | 2 Weeks |
---|---|
Dragging | Resizing |
---|---|
Creation Popup | Detail Popup |
---|---|
- Supports various view types: daily, weekly, monthly(6 weeks, 2 weeks, 3 weeks)
- Supports efficient management of milestone and task schedules
- Supports the narrow width of weekend
- Supports changing start day of week
- Supports customizing the date and schedule information UI(including a header and a footer of grid cell)
- Supports adjusting a schedule by mouse dragging
- Supports customizing UI by theme
- Basic : Example of using default options.
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-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 */
import Calendar from 'tui-calendar'; /* ES6 */
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;
}
}
});
TOAST UI products are open source, so you can create a pull request(PR) after you fix issues. Run npm scripts and develop yourself with the following process.
Fork develop
branch into your personal repository.
Clone it to local computer. Install node modules.
Before starting development, you should check to haveany errors.
$ git clone https://github.com/{username}/tui.calendar.git
$ cd tui.calendar
$ npm install
$ npm run test
Let's start development! You can see your code is reflected as soon as you saving the codes by running a server. Don't miss adding test cases and then make green rights.
$ npm run serve
$ npm run test
Before PR, check to test lastly and then check any errors. If it has no error, commit and then push it!
For more information on PR's step, please see links of Contributing section.
You can also see the older versions of API page on the releases page.
- tui-code-snippet >= 1.4.0
- tui-date-picker >= 3.0.0 is optional.
- tui-time-picker >= 1.0.0 is optional.
This software is licensed under the MIT Β© NHN Entertainment.