- Information
- License (MIT)
- Recent Changes
- Supported Languages
- Supported Export Types
- Supported Import Types
- Setup
- Getting Started
- CDN Links
- JSON Objects
- Calendar Event
- Holiday
- Navigation
- Shortcut Keys
- API
- Binding Functions
- Class Instance Functions
- Advanced
- Custom Triggers
- Basic Options
- View Options
- Search Options
- Side Menu Options
- Text Options
- Date Formatting
Date Formating
Explore our complete list of date formatting options, detailing how dates are displayed (where supported).
Example
calendarInstance.setOptions( {
views: {
fullMonth: {
titleBarDateFormat: "{mmmm} {yyyy}"
}
}
} );Formatting Options
| Formatter: | Description: |
|---|---|
| {dddd} | The full name of the day of the week. |
| {ddd} | The abbreviated name of the day of the week. |
| {dd} | The day of the month, from 01 through 31. |
| {d} | The day of the month, from 1 through 31. |
| {o} | The day ordinal. |
| {mmmm} | The full name of the month. |
| {mmm} | The abbreviated name of the month. |
| {mm} | The month, from 01 through 12. |
| {m} | The month, from 1 through 12. |
| {yyyy} | The year as a four-digit number. |
| {yyy} | The year, from 000 to 999. |
| {yy} | The year, from 00 to 99. |
| {y} | The year, from 0 to 99. |