Calendar

Used to display dates and corresponding events in the application. Can be used in various types of organizations, especially when the events/tasks are the core part of the work culture.

Basic

Provide the JSON array of items that fill the calendar events. Each item must have the following properties and details.

[
  {
    "id": "1",
    "title": "Coding",
    "start": "2024-06-23 10:00:00",
    "end": "2024-06-23 12:30:00",
    "color": "#079968"
  },
  {
    "id": "2",
    "title": "Rest",
    "start": "2024-06-24",
    "end": "2024-06-25",
    "allDay": true
  }
]

Interaction

License Key

The key code that was purchased as the license to use the 'Full calendar' library. Refer this for more info schedulerLicenseKey

Event Handlers

Advanced

Editable

Changes the calendar into an editable mode where the users can drag and drop the events as needed. The events can be edited when this mode is ON. Following are the properties the user can edit.

Default Date

Specify the initial date for the calendar to display after load. This value must be in the timestamp format. Example - "2024-06-23T06:19:18.884Z".

Default View

Loads the calendar into the view-type specified here. Types of view-

Start From

Mention the day on which the calendar should start the display. It can be set as any day among all the days of the week (Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday)

Layout

Hide

This sets whether the widget has to be displayed on the screen when the program is loaded. This shows/hides the widget both on desktop and mobile devices.

Set the visibility

Style

Last updated